import type { PathArray } from '../types';
/**
 * The `PathParser` is used by the `parsePathString` static method
 * to generate a `pathArray`.
 */
export declare class PathParser {
    pathValue: string;
    segments: PathArray;
    max: number;
    index: number;
    param: number;
    segmentStart: number;
    data: any;
    err: string;
    constructor(pathString: string);
}
