import { ReactElement } from 'react'; import { HighlightIconVariant } from '../HighlightIcon'; import { IconName } from '../Icon/Icon'; export type ModalHeaderWithIconVariant = HighlightIconVariant; export type ModalHeaderWithIconProps = { /** * The title of the Modal */ title: string; /** * The Subtitle of the Modal */ subtitle?: string; /** * The icon to display */ iconName: IconName; /** * Specifies the icon variant * @default info */ iconVariant?: ModalHeaderWithIconVariant; /** * The title's unique identifier. Same identifier should be pass to ModalContent using aria-labelledby. */ titleId?: string; }; export declare const ModalHeaderWithIcon: ({ iconName, iconVariant, title, subtitle, titleId, }: ModalHeaderWithIconProps) => ReactElement | null; //# sourceMappingURL=ModalHeaderWithIcon.d.ts.map