import type { FormatMessage } from 'tachyon-intl'; /** * Correctly formats viewer count for display or aria label. Optionally pass a * pre-formatted version of the value to customize the display. * * Note that this is subtly different from formatTotalViewCount, which is * suitable for indicating number of total views as opposed to number of live * viewers. * * @example * const viewerCountFormatted = formatNumberShort(props.viewerCount); * return ( * * {formatLiveViewersCount(formatMessage, props.viewerCount, viewerCountFormatted)} * * ); */ export declare function formatLiveViewersCount(formatMessage: FormatMessage, viewerCount: number, viewerCountFormatted?: string): string; //# sourceMappingURL=formatLiveViewersCount.d.ts.map