export declare class BaseModeField { value: T | undefined; key: string; label: string; required: boolean; order: number; controlType: 'text' | 'select' | 'multiselect'; type: string; options: { key: string; value: string; }[]; constructor(options?: { value?: T; key?: string; label?: string; required?: boolean; order?: number; controlType?: 'text' | 'select' | 'multiselect'; type?: string; options?: { key: string; value: string; }[]; }); }