export type Plurable = [singular: string, plural: string]; export declare function pluralizeIfNeeded(plurable: Plurable, unprintedMessages: number): string; export declare function camelToSnakeCase(str: string): string;