import Stream from '../Stream'; import Tuple from '../Tuple'; interface File { id: string; filename: string; contents: string; } export declare class WorkingFile { name: string; supportsCompleteScan: boolean; schemaStr: string; byId: Map; byFilename: Map; findById(tuple: Tuple, out: Stream): void; findByFilename(tuple: Tuple, out: Stream): void; insertNew(tuple: Tuple, out: Stream): void; updateContents(tuple: Tuple, out: Stream): void; } export {};