import React, { ReactNode, ElementType } from 'react'; import { BoxProps, TypographyProps } from '@mui/material'; import { LabelProps } from '@/src/components/label'; export interface TextAndCtaProps extends BoxProps { /** * Top label above the headlines */ label?: ReactNode; /** * Label customization */ labelProps?: LabelProps; /** * Main Headline at the top */ headline?: ReactNode; /** * Headline customization */ headlineProps?: TypographyProps; /** * Main Headline at the top */ subheadline?: ReactNode; /** * Subheading customization */ subheadlineProps?: TypographyProps; /** * Main text body */ body?: ReactNode; /** * Body text customization */ bodyProps?: TypographyProps; /** * Bottom CTA buttons */ buttons?: ReactNode; /** * Body text customization */ buttonsProps?: BoxProps; } export declare const TextAndCta: React.FC;