/**
 * Formats a given number of milliseconds into a string representation with
 * thousands separators.
 *
 * @param milliseconds - The number of milliseconds to format.
 * @returns A string representation of the formatted milliseconds.
 */
export declare function formatMs(milliseconds?: number): string
