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