import { IDialogOptions } from './dialog'; export interface IConfirmOptions extends IDialogOptions { actionType: 'create' | 'destroy' | 'trash' | 'neutral'; icon?: string; yes?: string; no?: string; resolveOnEnter?: boolean; } export default function (htmlOrOptions: string | IConfirmOptions, scope?: any, locals?: any): any;