export declare class FormBase { value: T; key: string; parentFieldKey: string; parentFieldFilterKey: string; parentShowCondition: { parentKey: string; parentValue: any; }; formattedValueKey: string; label: string; required: boolean; disabled: boolean; order: number; controlType: string; type: string; class: string; options: { key: string; value: any; }[]; validMessage: string; invalidMessage: string; min: number; max: number; constructor(options?: { value?: T; key?: string; parentFieldKey?: string; parentFieldFilterKey?: string; parentShowCondition?: { parentKey: string; parentValue: any; }; formattedValueKey?: string; label?: string; required?: boolean; disabled?: boolean; order?: number; controlType?: string; type?: string; class?: string; validMessage?: string; invalidMessage?: string; min?: number; max?: number; }); }