UNPKG

@flatbiz/antd

Version:
10 lines (7 loc) 287 B
import { InputNumberProps } from 'antd'; export type AmountFenInputProps = Omit<InputNumberProps, "defaultValue"> & { value?: number; onChange?: (value?: number) => void; }; export declare const AmountFenInput: (props: AmountFenInputProps) => import("react").JSX.Element; export {};