export type PathPart = { type: "jwt"; } | { type: "object"; key: string; } | { type: "array"; index: number; }; export declare function buildPathToPayload(pathToPayload: PathPart[]): string; export declare function getPathsToPayload(attackPayload: string, obj: unknown, matchCount?: number): string[];