/** * Reduces an object's key value (Semver) to a sortable string * * @since v0.0.1 * @category Sorting * @param {string} key - The key in the object * @param {number} [seed=100000] - A number to seed each major/minor/patch portion of the semver string to aid in the numeric sorting. You should never have to change this number unless one part of your version could be larger than the default. * @returns {(obj: T) => string} - The sorting function */ export declare const sortReduceSemver: (key: string, seed?: number) => (obj: T) => string;