/**
 * UI交互相关工具函数
 */
export type ToastIcon = 'none' | 'success' | 'loading' | 'error' | 'fail' | 'exception';
/**
 * 显示消息提示框
 *
 * @description
 * 本项目定位：仅在 uni-app 项目中使用（存在 `uni.showToast`）。
 * @param title 提示的内容，默认为空字符串
 * @param mask 是否显示透明蒙层，默认为 false
 * @param icon 图标类型，默认为 'none'
 * @param duration 提示的延迟时间，默认为 2000 毫秒
 */
export declare const useToast: (title?: string, mask?: boolean, icon?: ToastIcon | undefined, duration?: number) => void;
