/**
 * Converts JSON pointer to array of strings path
 *
 * @param ref JSON pointer
 *
 * @example
 * parseRef("#/definitions/field")  // -> ["definitions", "field"]
 */
export declare const parseRef: (ref?: string | undefined) => string[] | undefined;
export declare const getNameFromRef: (ref?: string | undefined) => string | undefined;
//# sourceMappingURL=get-name-from-ref.d.ts.map