/** * Maybe pluralize a count: * * @param count the value counting * @param noun the name of the value * @param suffix the suffix * @returns {string} * * @signature * U.maybePluralize(number, noun, suffix) * * @example * U.maybePluralize(1, 'Bag', 's') // => 1 Bag * U.maybePluralize(5, 'Bag', 's') // => 5 Bags */ export declare function maybePluralize(count: number, noun: string, suffix?: string): string; //# sourceMappingURL=maybePluralize.d.ts.map