export namespace componentKeys { const select: string; const input: string; } export namespace schema { const type: string; const properties: { [x: string]: { key: string; type: string; "x-component": string; title: string; enum: { value: string; label: string; }[]; "x-props": { placeholder: string; readOnly: boolean; "global-config": {}; type: string; eventObj: {}; }; classification: string; id: string; "x-fieldid": string; "x-index": number; required: boolean; hidden: boolean; formItemHidden: boolean; display: boolean; } | { key: string; type: string; "x-component": string; title: string; "x-props": { placeholder: string; readOnly: boolean; "global-config": {}; type: string; eventObj: {}; }; classification: string; id: string; "x-fieldid": string; "x-index": number; hidden: boolean; required: boolean; formItemHidden: boolean; display: boolean; enum?: undefined; }; }; }