/**
 * This function formats a duration into a human readable string
 * @param duration: duration in milliseconds (can be fractional)
 * @returns Will return a string to display the duration.
 */
declare const FormatDuration: (duration: number) => string;
export { FormatDuration };
