import { PathTo, Path, PathValue } from './deep_common'; /** @deprecated */ export declare const deep_get: >(o: T, p: L, defaultValue?: PathValue) => PathValue; /** @deprecated */ export declare const deep_set: >(o: T, p: L, v: PathValue) => void; /** @deprecated */ export declare function deep_sync(target: any, obj: any, exclude?: string[]): void; /** @deprecated */ export declare const deep_call: any, L extends PathTo>(o: T, p: L, params: Parameters, defaultValue?: ReturnType) => ReturnType;