import Graph from '../Graph'; import Tuple from '../Tuple'; import Stream from '../Stream'; export declare class FsFileContents { graph: Graph; supportsCompleteScan: false; name: string; schemaStr: string; constructor(graph: Graph, name: string, schema: string, filename: string); select(pattern: Tuple, out: Stream): void; insert(tuple: Tuple, out: Stream): void; delete(search: Tuple, out: Stream): void; }