import React from 'react'; export type AlertType = 'success' | 'warning' | 'loading' | 'info' | 'error'; export interface IAlertProps extends React.HTMLAttributes { type: AlertType; onClose?: (event?: React.MouseEvent) => void; onActionClick?: (event?: React.MouseEvent) => void; actionText?: string; customIcon?: React.ReactNode; } /** * Alert informs about persistent conditions or important information. See `` for informing users about feedback of their actions. */ export declare const Alert: ({ type, onClose, onActionClick, actionText, children, customIcon, ...props }: IAlertProps) => React.JSX.Element; //# sourceMappingURL=Alert.d.ts.map