import { DialogParams } from './dialog.factory' import { LiteralUnion } from './literal-union' import { MessageIconType } from './icon-type' export type PromptType = LiteralUnion export declare interface PromptParams extends DialogParams { type?: PromptType formProps?: { [index: string]: any } fieldProps?: { [index: string]: any } inputProps?: { [index: string]: any } defaultValue?: string } export interface MmPromptFactory { (options: PromptParams): Promise }