import { Document } from "./Document"; export interface Store { id?: string | null; spaceId: string | ""; name: string | ""; description: string | ""; status: StoreStatus | StoreStatus.EMPTY; documentCount: number | 0; chunkCount: number | 0; charCount: number | 0; flowCount: number | 0; documents: Document[]; createdAt: Date; createdBy: string; updatedAt?: Date | null; updatedBy?: string | null; deletedAt?: Date | null; deletedBy?: string | null; } export declare enum StoreStatus { EMPTY = 0, ACTIVE = 1, SYNCING = 2, ERROR = 3 }