import { IQuery } from "../../search/types/IHubCatalog"; /** * @private * Construct an IQuery to fetch the inverse of a specified set * of item id(s) by type(s). Note: if an array of types is provided, * they must be the same underlying target entity type. * * @param itemType - a single item type or an array of item types * @param ids - an array of ids * @returns {IQuery} */ export declare function getTypeByNotIdsQuery(itemType: string | string[], ids: string[]): IQuery;