import { ReactNode } from 'react'; export declare type ToastType = 'info' | 'success' | 'error'; export interface ToastProps { type: ToastType; open: boolean; autoHideDuration?: number; children?: ReactNode; onClose?: () => void; } export declare function Toast({ type, open, autoHideDuration, onClose, children }: ToastProps): JSX.Element; //# sourceMappingURL=toast.d.ts.map