import { IQuery } from "./types/IHubCatalog"; /** * Get all the values for a predicate in a query * @param predicateProp The predicate property to get the values for * @param query The query to get the values from * @returns An array of all the values for the predicate */ export declare function getPredicateValues(predicateProp: string, query: IQuery, props?: string[]): string[];