export interface DocumentDocument extends CoreEntity { url: string; type: Document; title: string; description: string; ownerId: string; } import { CoreEntity } from '../core/entity'; export declare type Document = 'pdf' | 'xls' | 'csv' | 'doc' | 'docx' | 'txt';