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