export declare function useNumbers(): { n: N; }; export declare type N = { rounded: (value: number) => string; full: (value: number) => string; ordinal: (value: number) => string; cardinal: (value: number, nouns: string[][]) => string; conjunction: (items: string[]) => string; disjunction: (items: string[]) => string; }; export declare const emptyN: N;