import { IQuery } from "./types/IHubCatalog"; /** * @internal * Naieve implementation to merge two queries into one. This * simply combines the filters of the two queries. It does not attempt * to disabiguate the filters or predicates. It is up to the caller * to ensure that the queries are compatible and don't result in a null set * of results. * @param queries * @returns */ export declare const combineQueries: (queries: IQuery[]) => IQuery;