import get from 'lodash.get'; import set from 'lodash.set'; export { get, set }; /** * Initialize a deeply nested object. * @returns The value of the prop after assignment. */ export declare const setDeep: (obj: any, path: readonly (string | number)[], value: T) => T; /** * Gets a value from a deeply nested object. * @returns The value of the prop if it exists, otherwise undefined. */ export declare const getDeep: (obj: any, path: readonly (string | number)[]) => T | undefined; //# sourceMappingURL=deep.d.ts.map