import { IOptions } from './forms' import { IRecord } from './record' export interface IFieldComponent { value?: IRecord | string | number | boolean | any[] | null | undefined form?: string, name: string | undefined, options?: string | any[] | IOptions features?: { [key: string]: string | number | object | boolean, } forceNormalDropdown?: boolean prompt?: any sortBy?: string onChange(arg0: any): void }