import { ComboBoxService } from "../comboBox/comboBoxService"; export { ComboBoxService }; /** * State model state definition */ export declare class StateModelState { name: string; id: string; } export declare const SEPARATOR: string; /** * State model states combo box service used to load available state model states for current entity state model */ export declare class StateModelStatesComboBoxService extends ComboBoxService { /** * Entity type name for which state model will be loaded */ stateModelEntityName: string; /** * State model for which to filter the state model states */ stateModelName: string; /** * Currently set state model collection */ currentStateModelCollection: StateModelState[]; /** * Get state models according to defined entity type name */ getData(): Promise; /** * Set navigation instance */ getNavigationInstance(value: any): any; }