import * as React from 'react';
export interface IntroBlockProps {
  className?: string;
  style?: React.CSSProperties;
  showTag?: boolean;
  rightButton?: boolean;
  showHeadline?: boolean;
  alignment?: "h1 left" | "h1 center" | "h2 left" | "h2 center" | "h3 left" | "h3 center";
  secondary?: boolean;
  showButtonArrows?: boolean;
  arrows?: boolean;
  primary?: boolean;
  showBody?: boolean;
  showButtons?: boolean;
  /** Text content; defaults to "Clear H1 headline goes here". */
  text1?: string;
  /** Text content; defaults to "Use this text to expand on your headline. Keep it short and clear.". */
  text2?: string;
}
export declare const IntroBlock: React.FC<IntroBlockProps>;
export default IntroBlock;
