/** * Pick * @template T, S * @description Reads value from object using dot notation path as key * @param {string} path * @param {T} source * @returns {T} value */ export declare const pick: >(source: S, path: string) => T; export default pick;