export declare class StoredFile { filename: string; version: number; path: string; guid: string; size: number; lastmodified: number; is_dir: boolean; id: number; infolder: number; highlights: string[]; tags: string[]; resources: string[]; versions: StoredFile[]; constructor(init?: Partial); isDirectory(): boolean; read(src: any): StoredFile; }