import { IMeasure } from '../types';
export type powerSystems = 'metric';
export type powerUnits = 'mW' | 'W' | 'kW' | 'MW' | 'GW';
export declare const power: IMeasure<powerSystems, powerUnits>;
