/** * @file usePrecisionValue 输入类组件 */ import { AxisType } from '@co-hooks/region'; export declare type INumberConverter = (value: string) => string; export declare const DEFAULT_CONVERTER: INumberConverter; export declare function usePrecisionValue(part: string, type: AxisType, format?: INumberConverter, parse?: INumberConverter): [string, (val: string) => void, () => void];