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