import { ValidationError } from "./types.js";
export interface DataPathItem {
key: string;
type: 'string' | 'number';
}
export interface DataPath {
path: Array<DataPathItem>;
simplePath: Array<string>;
}
export declare function parseDataPath(error: ValidationError): DataPath;