/**
 * Formats a given number of operations per second (Hz) into a string
 * representation with thousands separators.
 *
 * @param hz - The number of operations per second (Hz) to format.
 * @returns A string representation of the formatted Hz.
 */
export declare function formatHz(hz?: number): string
