import { FC } from 'react'; import type { AlertTypes } from './alert'; interface IProps { icon?: JSX.Element; type?: AlertTypes; size?: number; } export declare type TIcon = { [icon in AlertTypes]: JSX.Element; }; export declare const Icon: FC; export {};