/** Exported for unit tests; local `database_query` rejects filters that include these operators. */ export declare const databaseQueryFilterUsesForbiddenOperators: (filter: unknown) => boolean; export interface DatabaseQueryArgs { collection: string; operation: string; filter?: unknown; pipeline?: unknown[]; field?: string; limit?: number; } export declare const databaseQuery: (args: DatabaseQueryArgs) => Promise; //# sourceMappingURL=databaseQuery.d.ts.map