/**
 * Formats a number for display with intelligent abbreviation
 * @param num - The number to format
 * @returns Object with formatted string and whether it was rounded
 */
export declare function formatCount(num: number): {
    text: string;
    isRounded: boolean;
};
//# sourceMappingURL=number.d.ts.map