import { type BlockBackgroundVariant } from "../BlockBackground"; export type FocusBlockProps = Readonly<{ overline?: string; title?: string; description?: React.ReactNode; visual?: React.ReactNode; ctas?: React.ReactNode[]; background?: BlockBackgroundVariant; /** Below `lg` the visual stacks above the text. Set it for a visual that reads as content, like a list, so the text comes first. */ visualLast?: boolean; }>; export declare const FocusBlock: ({ overline, title, description, visual, ctas, background, visualLast, ...rest }: FocusBlockProps) => import("react").JSX.Element; //# sourceMappingURL=FocusBlock.d.ts.map