import { SxProps } from '@mui/system'; import { FlexibleString } from '../../../innerComponents/FlexibleTypography'; import { FlexibleButtonType } from '../../../innerComponents/FlexibleButton'; export type HeroBlockProps = { title: FlexibleString; subtitle?: FlexibleString; description?: React.JSX.Element; callToAction?: FlexibleButtonType; imageUrl?: string; sxProps?: SxProps; }; export declare const HeroBlock: (props: HeroBlockProps) => import("react/jsx-runtime").JSX.Element;