/** * Creates a plural version of a string to log to the console. * * `plural('%s book(s)', books)` * * `plural('%s stitch(es)', 3)` * * `plural('%s dependenc(y|ies)', deps)` * * * If passed an object as the second argument, the number of keys will be used. */ export declare function plural(f: string, count?: number | any[] | Record): string; //# sourceMappingURL=plural.d.ts.map