import { OverrideStandard } from '../types'; /** * Changes the last element of array to `*` * @param path The path in form of an array * @returns The path in form of a string with `*` at the end * * @example * changeLastElementToPlaceholder(['', 'servers', 'production']); // '/servers/*' * * @private */ export declare function changeLastElementToPlaceholder(path: string[]): string; /** * Generates the correct path to get the classification data from standard * @param standard The standard object * @param path The JSONpointer path to find * @returns The path found * * @private */ export declare function generateClassifierPath(standard: OverrideStandard, path: string): string | undefined;