import type { DialogOptions } from './use-dialog'; import type { FormItemProps } from 'el-plus/es/components/form'; import type { InputProps } from 'element-plus'; type Options = Partial<{ title?: string; width?: string; dialogProps?: DialogOptions; } & TextareaProps & TextareaFormItemProps>; type TextareaProps = Pick; type TextareaFormItemProps = Pick; export declare const useConfirmDialog: (options?: Options) => import("el-plus/es").TemplatePromise; export {};