import TableMount, { TupleStreamCallback } from "./TableMount"; import Graph from "./Graph"; interface SingleTableDefinition { name: string; [commandStr: string]: string | TupleStreamCallback; } interface TableSetDefinition { [schema: string]: SingleTableDefinition; } export default function setupTableSet(def: TableSetDefinition): TableMount[]; export declare function graphWithTableSet(def: TableSetDefinition): Graph; export {};