import { Unit } from 'dimensional';
import { Flow, Head, Power, Speed } from './types.js';
/**
 * Convert the string representation of the flow to the actual units
 */
export declare const FlowUnits: Record<Flow, Unit>;
/**
 * Convert the string representation of the head to the actual units
 */
export declare const HeadUnits: Record<Head, Unit>;
/**
 * Convert the string representation of the speed to the actual units
 */
export declare const SpeedUnits: Record<Speed, Unit>;
/**
 * Convert the string representation of the power to the actual units
 */
export declare const PowerUnits: Record<Power, Unit>;
