/** * Maps table names to their corresponding schema keys. * Uses LixSchemaViewMap to derive the mappings dynamically. */ export declare function determineSchemaKeys(compiledQuery: any): string[]; /** * Extracts literal `schema_key`, `entity_id`, and `version_id` filters from a compiled query AST. */ export declare function extractLiteralFilters(compiledQuery: any): { schemaKeys: string[]; versionIds: string[]; entityIds: string[]; fileIds: string[]; }; //# sourceMappingURL=determine-schema-keys.d.ts.map