import type { ObjectWithId } from '@naturalcycles/js-lib/types';
import type { DBQuery } from '../query/dbQuery.js';
export declare function queryInMemory<ROW extends ObjectWithId>(q: DBQuery<ROW>, rows?: ROW[]): ROW[];
