export type DotPath = string | string[]; export declare const dot: { getter: (obj: any, path: DotPath, defaultValue?: any) => any; setter: (obj: any, path: DotPath, value: any) => any; toDot: (obj: any, parentKey?: string, result?: any) => any; }; //# sourceMappingURL=index.d.ts.map