import * as Lbos from "cmf.lbos"; import { ComboBoxService } from "../comboBox/comboBoxService"; export { ComboBoxService }; export interface EntityComboBoxDef { includeRelations: boolean; onlyWithStateModels: boolean; } /** * Business combo box generic service */ export declare class EntityComboBoxService extends ComboBoxService { entityComboBox: EntityComboBoxDef; /** * Gets or sets the Reference Type to be used as a filter in the Combo Box. */ referenceType: Lbos.Cmf.Foundation.Common.ReferenceType.EntityType | Lbos.Cmf.Foundation.Common.ReferenceType.EntityDefinition | Lbos.Cmf.Foundation.Common.ReferenceType.EntityVersion; /** * Get all entities method */ getData(): Promise; }