export declare const traverseJSON: ((data: any, processItem: (value: any, path: string[]) => any, config?: { path?: string[] | undefined; type?: "topDown" | "bottomUp" | undefined; } | undefined) => any) & { topDown: 'topDown'; bottomUp: 'bottomUp'; TOP_DOWN: 'topDown'; BOTTOM_UP: 'bottomUp'; };