/** * Formats a value and a physical unit into text. * @param value the numerical or string value to encode * @param unit the unit represented as a string (an empty string is also supported) */ export declare function unit(value: number | string, unit: string | null): string;