import type { Schema } from "../schema"; export declare const toJsonPointer: (path?: (string | number)[], prefix?: string) => string; export declare const fromJsonPointer: (pointer: string) => string[]; export declare function getJsonPath(object: object | Schema, _path: string | (string | number)[], defaultValue?: undefined): any; export declare function getPath(object: object | Schema, _path: string | (string | number)[], defaultValue?: undefined): any;