declare type Abbreviation = "kilo" | "million" | "billion" | "trillion"; interface Props { /** For example "kilo" mean 1,000+ (4 digits or more.) */ abbreviation?: Abbreviation; input: number; numOfDecimals?: number; } export declare function useConvertNumToAbbr(): { convertNumToAbbr: ({ abbreviation, input, numOfDecimals, }: Props) => string | number; }; export {}; //# sourceMappingURL=index.d.ts.map