import { ReactNode } from 'react'; type Props = { title?: string; showIcon?: (height: number, width: number) => ReactNode; iconSize?: 'normal' | 'large'; }; declare const ModalIcon: ({ title, showIcon, iconSize }: Props) => JSX.Element; export default ModalIcon;