/** * Minimal implementation of lodash's _.set * https://lodash.com/docs/4.17.15#set * * See ./set.test.ts for usage examples */ export declare const set: (obj: any, _path: string | string[], value: any) => any;