import { QueryFunction } from '../types'; /** * Creates a new immutable instance of {@link Query} that is extended to also include * additional query constraints. * * @param query - The {@link Query} instance to use as a base for the new constraints. * @param queryConstraints - The list of {@link QueryConstraint}s to apply. * @throws if any of the provided query constraints cannot be combined with the * existing or new constraints. */ export declare const query: QueryFunction;