declare const Message: { info: (msg: string, timeout?: number, showProgress?: boolean) => void; error: (msg: string, timeout?: number, showProgress?: boolean) => void; success: (msg: string, timeout?: number, showProgress?: boolean) => void; warning: (msg: string, timeout?: number, showProgress?: boolean) => void; pending: (msg: string) => void; }; export { Message };