import type { ProjectId } from '../../management/project/project'; import type { BaseModel } from '../common/base-model'; import type { ApId } from '../common/id-generator'; export type StoreEntryId = ApId; export declare const STORE_KEY_MAX_LENGTH = 128; export declare const STORE_VALUE_MAX_SIZE: number; export type StoreEntry = { key: string; projectId: ProjectId; value: unknown; } & BaseModel; //# sourceMappingURL=store-entry.d.ts.map