/** * Split a decimal number into a string, separated the integer part and the decimal * e.g "125.46" * return { mainLabel: '125', decimalLabel: '46' } */ export declare const useSplitDecimal: (value: any, decimals?: number) => { textValue: { mainLabel: any; decimalLabel?: undefined; } | { mainLabel: number; decimalLabel: string; }; }; //# sourceMappingURL=useSplitDecimal.d.ts.map