/**
 * Convert between units of data
 * @param n The value to be converted
 * @param from The current data value.
 * @param to The value to convert to.
 */
export declare function data(n: number, from: string, to: string): number;
