import { UnitType } from '../../components/_dashboards/dashboard-visualisation/Validate';
/**
 * Maps the measure Unit type to the correct char
 *
 * @param {string} unit
 * @return {*}  {string}
 */
export declare const mapUnitToSymbol: (unit?: UnitType) => string;
export declare const setUnitOnValue: (value: string | number | null | undefined, unit?: string, brackets?: boolean, prefix?: boolean) => string;
