import { Vue } from "vue-property-decorator"; import { IDialogConfig } from "./type"; export default class VFormDialog extends Vue { config: IDialogConfig; get title(): any; get form(): any; get isShowFooter(): boolean; confirm(): void; close(): void; clearValidate(): void; }