import type { UmbDictionaryItemModel } from './types.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; import { UmbItemStoreBase } from '../../../core/store/index.js'; /** * @class UmbDictionaryItemStore * @augments {UmbStoreBase} * @description - Data Store for Dictionary items */ export declare class UmbDictionaryItemStore extends UmbItemStoreBase { /** * Creates an instance of UmbDictionaryItemStore. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbDictionaryItemStore */ constructor(host: UmbControllerHost); } export { UmbDictionaryItemStore as api };