export declare function createPrefix(index: number): string;
export type KeyMatch = {
    index: number;
    originalKey: string;
};
export declare function parseKey(prefixedKey: string): KeyMatch;
export declare function parseKeyFromPath(path: readonly (string | number)[]): KeyMatch & {
    keyOffset: number;
};
