/** * Function to convert a unit to another unit. * @param actualUnit The unit returned by the speed test * @param newUnit The new unit to which you want to convert speed * @param speed Current network speed * @returns ```number``` new speed */ export declare function convertUnits(actualUnit: string, newUnit: string, speed: number): number;