/**
 * Converts between volume units
 *
 * @param n - The value to be converted
 * @param from - The current volume unit.
 * @param to - The volume unit to be converted to.
 */
export declare function volume(n: number, from: string, to: string): number;
