import { IMeasure } from '../types'; export type volumeSystems = 'metric' | 'imperial'; export type volumeUnits = 'mm3' | 'cm3' | 'ml' | 'cl' | 'dl' | 'l' | 'kl' | 'm3' | 'km3' | 'krm' | 'tsk' | 'msk' | 'kkp' | 'glas' | 'kanna' | 'tsp' | 'Tbs' | 'in3' | 'fl-oz' | 'cup' | 'pnt' | 'qt' | 'gal' | 'ft3' | 'yd3'; export declare const volume: IMeasure;