/// import type { Attribute, AnyAttribute, Model, Data } from './types'; export type VisitorUtils = ReturnType; export interface VisitorOptions { data: Record; schema: Model; key: string; value: Data[keyof Data]; attribute?: AnyAttribute; path: Path; getModel(uid: string): Model; parent?: Parent; } export type Visitor = (visitorOptions: VisitorOptions, visitorUtils: VisitorUtils) => void; export interface Path { raw: string | null; attribute: string | null; } export interface TraverseOptions { schema: Model; path?: Path; parent?: Parent; getModel(uid: string): Model; } export interface Parent { attribute?: Attribute; key: string | null; path: Path; schema: Model; } declare const createVisitorUtils: ({ data }: { data: Data; }) => { remove(key: string): void; set(key: string, value: Data): void; }; declare const _default: import("lodash").CurriedFunction3>; export default _default; //# sourceMappingURL=traverse-entity.d.ts.map