export declare enum ConfirmResult { YES = "yes", NO = "no", CANCEL = "cancel" } /** * 确认提示 * @param content 确认提示 * @param title 提示标题上的文字 * @param yes 确认按钮上的文字 * @param no 取消按钮上的文字 * @param background 背景颜色,默认为:#1890ff * @example confirm(content, title, yes, no); */ export default function confirm(content: string, title: string, yes: string, no: string, background?: string): Promise;