/** * Returns a (deeply) nested value from an object * @example To retrieve the value for 'baz' from const obj = { foo: { bar: { baz: 'qux' }}}, call the function like so: * const bazValue = valueFromObject('foo.bar.baz', obj); * @throws {Error} whenever the requested key cannot be found */ import { Theme } from '../types'; export declare const valueFromObject: (key: string, obj: T) => any; //# sourceMappingURL=valueFromObject.d.ts.map