interface JSONPathResult {
    hasArrExpr?: boolean;
    parent: any;
    parentProperty: string;
    path: string;
    pointer: string;
    value: any;
}
/**
 * Run a set of JSONPath queries against an API definition.
 *
 * @see {@link https://jsonpath.com/}
 * @see {@link https://npm.im/jsonpath-plus}
 */
export declare function query(queries: string[], definition: any): JSONPathResult[];
/**
 * Transform a JSON pointer into a JSON Schema `$ref`-compatible pointer.
 *
 * @example `/paths/~1streams/post/callbacks` -> `#/paths/~1streams/post/callbacks`
 */
export declare function refizePointer(pointer: string): string;
export {};
