import { FunctionComponent } from 'react';
interface AlertProps {
    type: 'success' | 'warning' | 'error';
    message: string;
}
declare const Alert: FunctionComponent<AlertProps>;
export default Alert;
