import React from 'react'; interface IProps { style?: React.CSSProperties; type: string; message?: string; description: string; onClose: Function; } declare function _Alert(props: IProps): JSX.Element; export declare const Alert: React.MemoExoticComponent; export {};