/**Business */ import Cmf from "cmf.lbos"; import { ComboBoxService } from "../comboBox/comboBoxService"; export { ComboBoxService }; /** * State models combo box service used to load available StateModels for entity type name */ export declare class StateModelsComboBoxService extends ComboBoxService { /** * Entity type name for which state models will be loaded */ stateModelEntityName: string; /** * Get state models according to defined entity type name */ getData(): Promise; /** * Set navigation instance */ getNavigationInstance(value: any): any; }