export type PluralCategory = 'zero' | 'one' | 'two' | 'few' | 'many' | 'other';
export declare function setPluralLocale(locale: string): void;
export declare function pluralCategory(count: number): PluralCategory;
