import React from 'react'; interface ToastProps { content?: string | React.ReactNode; duration?: number; mask?: boolean; position?: 'bottom' | 'middle' | 'top'; contentStyle?: any; top?: number; messageType?: 'info' | 'fail' | 'success' | 'warn'; onClose?(): void; } declare const _default: { success: (ToastProp?: ToastProps | undefined) => void; fail: (ToastProp?: ToastProps | undefined) => void; info: (ToastProp?: ToastProps | undefined) => void; loading: (ToastProp?: ToastProps | undefined) => void; hide: () => void; message: (ToastProp?: ToastProps | undefined) => void; }; export default _default;