import './action-sheet/index'; import './alert'; import './confirm/index'; import './loading'; import './preview-image/index'; import './prompt/index'; import './toast/index'; declare const _default: { previewImage(options: any): Promise; alert({ title, content, buttonText }: { title: any; content: any; buttonText: any; }): Promise; showLoading({ content, delay }: { content: any; delay: any; }): void | Promise; hideLoading(): Promise; showToast({ content, type, duration }: { content: any; type: any; duration?: number; }): Promise; hideToast(): Promise; confirm(attributes: any): Promise; prompt(attributes: any): Promise; showActionSheet(attributes: any): Promise; }; export default _default;