import { ChevronProps } from '../Chevron/Chevron.interface'; import { ReactNode } from 'react'; import { ImageInterface } from '.'; import { ContainerVariants, LayoutVariants } from './IconBillboard.css'; export interface FocusProps { icon?: ImageInterface; headline?: ReactNode | undefined; body?: ReactNode | undefined; items?: { id: string; content: ReactNode; }[]; callToActionRow?: ChevronProps[]; set?: boolean; id?: string; } export declare const IconBillboard: (props: FocusProps & ContainerVariants & LayoutVariants) => import("react").JSX.Element;