export declare class ElementInputBase { value: T; key: string; label: string; required: boolean; order: number; controlType: string; id: string; size: number; display: string; constructor(options?: { value?: T; key?: string; label?: string; required?: boolean; order?: number; controlType?: string; id?: string; size?: number; display?: string; }); }