import type { ReactNode } from 'react'; import React from 'react'; import 'antd/lib/input-number/style'; export type PercentPropInt = { prefix?: ReactNode; suffix?: ReactNode; text?: number | string; precision?: number; showColor?: boolean; showSymbol?: boolean | ((value: any) => boolean); placeholder?: string; }; declare const _default: React.ForwardRefExoticComponent>; export default _default;