import React from 'react'; type ToastType = 'success' | 'warning' | 'loading' | 'error' | 'info'; export interface IToastProps extends React.HTMLAttributes { type: ToastType; onClose?: (event?: React.MouseEvent) => void; onActionClick?: (event?: React.MouseEvent) => void; actionText?: string; duration?: number | null; } export declare function Toast({ type, onClose, duration, onActionClick, actionText, children, ...props }: IToastProps): React.JSX.Element; export {}; //# sourceMappingURL=Toast.d.ts.map