import type { JSONSchema7 as JSONSchema } from 'json-schema';
/**
 * Adds {@link SchemaPathSymbol} property with JSON Path to each schema object
 * in the given `jsonSchema`. This function **mutates** the given `jsonSchema`!
 */
export declare function injectPathToSchemas(jsonSchema: JSONSchema, prefix?: string): void;
