import type { PropertyFilter, Query } from '@google-cloud/datastore';
import type { DBQuery } from '@naturalcycles/db-lib';
import type { ObjectWithId } from '@naturalcycles/js-lib/types';
export declare function dbQueryToDatastoreQuery<ROW extends ObjectWithId>(dbQuery: Readonly<DBQuery<ROW>>, emptyQuery: Query, propertyFilterClass: typeof PropertyFilter): Query;
