import { DialogParams } from './dialog.factory' import { LiteralUnion } from './literal-union' import { ConfirmIconType } from './icon-type' export type ConfirmType = LiteralUnion<'' | ConfirmIconType, string> export interface ConfirmParams extends DialogParams { type?: ConfirmType } export declare interface MmConfirmFactory { (options: ConfirmParams): Promise }