import { IMeasure } from '../types';
export type chargeSystems = 'metric';
export type chargeUnits = 'abC' | 'c' | 'mC' | 'uC' | 'nC' | 'stC' | 'pC' | 'e';
export declare const charge: IMeasure<chargeSystems, chargeUnits>;
