export type PluralForms = { zero?: string | ((n: number) => string); one?: string | ((n: number) => string); other?: string | ((n: number) => string); }; export declare function plural(n: number, forms: PluralForms): string; export declare function createFormat(locale: string): { number: (n: number) => string; date: (d: Date) => string; }; export declare function josa(word: string, type: "은는" | "이가" | "을를" | "과와" | "으로"): string; //# sourceMappingURL=utils.d.ts.map