import { type BlockBackgroundVariant } from "../BlockBackground"; export type HomeHeroBlockProps = Omit, "title" | "children"> & Readonly<{ title?: React.ReactNode; subtitle?: React.ReactNode; ctas?: React.ReactNode; wideVisual?: React.ReactNode; standardVisual?: React.ReactNode; background?: BlockBackgroundVariant; }>; export declare function HomeHeroBlock({ title, subtitle, ctas, wideVisual, standardVisual, background, className, ...rest }: HomeHeroBlockProps): import("react").JSX.Element; //# sourceMappingURL=HomeHeroBlock.d.ts.map