import { Collection } from '../collection'; type TraverseOptions = { collection: Collection; exclude?: string[]; include?: string[]; through?: string; excludePk?: boolean; }; export declare const traverseJSON: (data: any, options: TraverseOptions) => any; export {};