import { Model } from './model'; import { Folder } from './folder'; export declare class Document extends Model { id: number; label: string; doctype: string; source: string; category: string; published: boolean; viewable: boolean; author: string; description: string; created_at: string; deleted_at: string; meta_data: any; folder: Folder; constructor(data?: any); /** * Override transform method that is always and * automatically called by hydrate (at the end) */ protected transform(): void; }