export type Collection = { id?: string; name: string; description: string; }; export type IDocument = { id?: string; collectionId: string; name: string; description: string; siteUrl?: string; documentUrl?: string; }; export type Paragraph = { id?: string; documentId: string; collectionId: string; content: string; }; export type SearchResult = { paragraphs: Array; };