export declare type TypeWithIcon = 'success' | 'fail' | 'loading';
export declare type Type = 'info' | TypeWithIcon;
export declare type NoArgsReturnVoidFunction = () => void;
export interface Message {
    id: number;
    type: Type;
    content: string;
    duration?: number;
    onClose?: NoArgsReturnVoidFunction;
}
