import type { ReactNode } from 'react';
import { DialogViewWidgetState } from 'handie-react';
import { DialogViewStructuralWidget } from 'handie-react/dist/widgets/class';
import type { FormDialogViewWidgetConfig } from './typing';
export default class FormDialogViewWidget extends DialogViewStructuralWidget<DialogViewWidgetState, FormDialogViewWidgetConfig> {
    protected get dialogTitle(): string;
    private initFormDialogViewContextEvents;
    render(): ReactNode;
    componentWillMount(): void;
}
