import { Slot } from 'vue';
import { DialogPropsType } from './dialog';
interface DialogOptionsType extends Omit<DialogPropsType, 'modelValue'> {
    key: string;
}
declare const createDialog: (customProps: Partial<DialogOptionsType>, customSlots?: Record<string, Slot>) => void;
export default createDialog;
