import { ReactNode } from 'react'; export type IconModalProps = { title: ReactNode; subtext?: ReactNode; helpText?: ReactNode; iconType?: 'info' | 'help'; }; export declare const IconModal: ({ title, subtext, helpText, iconType }: IconModalProps) => import("@emotion/react/jsx-runtime").JSX.Element;