import type { FormatMessage } from 'tachyon-intl'; /** * Correctly formats view 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 formatLiveViewersCount, which is * suitable for indicating number of live viewers as opposed to number of total * views. * * @example * const viewCountFormatted = formatNumberShort(props.viewCount); * return ( * * {formatTotalViewCount(formatMessage, props.viewCount, viewCountFormatted)} * * ); */ export declare function formatTotalViewCount(formatMessage: FormatMessage, viewCount: number, formattedViewCount?: string): string; //# sourceMappingURL=formatTotalViewCount.d.ts.map