/** * Reduces to an object's key value for sorting * * @since v0.0.1 * @category Sorting * @param {string} key - The key or the path to the key in the object to reduce * @returns {>(obj: T) => unknown} * @example * sortReduce('count')({ count: 25 }) * //=> 25 */ export declare const sortReduce: (key: string) => >(obj: T) => unknown;