/** * Returns a pluralized (by default: `word` + `'s'`) string based on the count. * * `word` should be provided in singular form. */ export declare function pluralize(word: string, count: number, pluralSuffix?: string): string;