import type { SemanticBackend } from './semantic-plan.js'; export type InMemoryTable = Array>; export type InMemoryTables = Record; /** * @deprecated The plan/backend execution path is frozen (bug fixes only); this * backend remains as the test harness for that path. New code should use * `createDatasetClient({ queryBuilder })`. */ export declare function createInMemoryBackend(tables: InMemoryTables): SemanticBackend; //# sourceMappingURL=in-memory-backend.d.ts.map