import { BulletItemProps } from '../BulletItem'; import { ChevronProps } from '../Chevron/Chevron.interface'; import { ImageInterface } from '../IconBillboard'; import { SecondaryTypes } from '../utils/variant.types'; import { FC, ReactNode } from 'react'; export interface interstitialProps { id?: string; variant?: SecondaryTypes; image?: ImageInterface; callToActionRow?: ChevronProps[]; headline?: string | ReactNode; bodyCopy?: string | ReactNode; isOpen?: boolean; onClose?: () => void; bullets: BulletItemProps[]; } export declare const Interstitial: FC;