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