/** * Returns the correct singular or plural form of a word based on the given count. * * @param count - The numeric value determining which form to return. * @param singular - The singular form of the word. * @param plural - The plural form of the word. * @returns The singular form if count is exactly 1, otherwise the plural form. * * @example * pluralize(1, 'apple', 'apples'); // "apple" * pluralize(2, 'apple', 'apples'); // "apples" * pluralize(0, 'apple', 'apples'); // "apples" */ export declare function pluralize(count: number, singular: string, plural: string): string; //# sourceMappingURL=pluralize.d.ts.map