import { FormComponentConfig } from "../form/form.model"; import { LabelConfig } from "../label/label.model"; export declare class DialogComponentConfig { id?: string; title: LabelConfig; text: LabelConfig; close?: LabelConfig; actions?: { id?: string; label: LabelConfig; data?: any; action?: () => {}; }[]; form: FormComponentConfig; }