import React from 'react'; import { IconType } from './types/icons'; export type AlertType = 'success' | 'warning' | 'danger' | 'verification'; export interface AlertProps { children: any; dismissable?: boolean; icon?: IconType; inline?: boolean; type: AlertType; hidden?: boolean; className?: string; showIcon?: boolean; onClick?: (event: any) => void; } export declare const Alert: React.SFC; export default Alert;