import { Relation } from 'typeorm'; import { z } from 'zod'; import { User } from './user.entity.js'; import { WorkflowEntity } from './workflow.entity.js'; export declare class DocumentEntity { id: string; messageId: string; documentName: string; workspaceId: string; content: T | null; error: z.ZodError | null; tags: string[]; meta: Record | null; isInvalidated: boolean; index: number; transition: string | null; place: string | null; createdAt: Date; updatedAt: Date; workflow: Relation; labels: string[]; workflowId: string; creator: Relation; createdBy: string; } //# sourceMappingURL=document.entity.d.ts.map