import type { Converter } from "../types/converter.js";
import type { Unit } from "../types/units.js";
/**
 * Convert several values in a string into a single unit.
 *
 * @example
 * ```ts
 * convertMany('1d 12h').to('hours') === 36;
 * ```
 *
 * @param value - The string to parse as values
 *
 * @public
 */
export declare function convertMany(value: string): Converter<number, Unit>;
