/**
 * Pluralizes a word based on count
 * @param text - The word to pluralize
 * @param count - The count to determine if pluralization is needed
 * @returns The pluralized word if count is not 1, otherwise the original word
 */
declare const pluralize: (text: string, count: number) => string;
export default pluralize;
