import type { PropType, ExtractPropTypes } from 'vue'; export declare const confirmDialogFooterProps: { text: { type: PropType; default: string; required: boolean; }; placeholder: { type: PropType; default: string; }; confirmText: { type: PropType; default: string; }; cancelText: { type: PropType; default: string; }; confirmLoading: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: boolean; }; }; export type ConfirmDialogFooterProps = ExtractPropTypes; export declare const confirmDialogFooterEmits: { cancel: () => void; confirm: () => void; }; export type ConfirmDialogFooterEmits = typeof confirmDialogFooterEmits;