import { ReactElement, ReactNode } from 'react'; export type ModalHeaderWithIllustrationProps = { /** * The title of the Modal */ title: string; /** * The Subtitle of the Modal */ subtitle?: string; /** * The illustration to display */ illustration: ReactNode; /** * Specifies the illustration height. * @default 424px */ illustrationHeight?: string; /** * The title's unique identifier. Same identifier should be pass to ModalContent using aria-labelledby. */ titleId?: string; }; export declare const ModalHeaderWithIllustration: ({ illustration, illustrationHeight, title, subtitle, titleId, }: ModalHeaderWithIllustrationProps) => ReactElement | null; //# sourceMappingURL=ModalHeaderWithIllustration.d.ts.map