import { CodeType, LookupCallOrModel, ObjectOrChildModel, ValueFieldModel, Widget } from '../../index'; export interface LookupBoxModel extends ValueFieldModel { /** * Configures a box that is shown below the list box and can be used to display filter options. */ filterBox?: ObjectOrChildModel; /** * Configures the {@link LookupCall} that is used to load the data. */ lookupCall?: LookupCallOrModel; /** * If set, a {@link CodeLookupCall} is created and used for the property {@link lookupCall}. * * The property accepts a {@link CodeType} class or a {@link CodeType.id} (see {@link CodeTypeCache.get}). */ codeType?: string | (new () => CodeType); } //# sourceMappingURL=LookupBoxModel.d.ts.map