import type { FC } from 'react'; import './index.less'; export interface DataQuantityLimitProps { defaultValue: number; value: number; onChange?: (data: number | null) => void; } declare const DataQuantityLimit: FC; export default DataQuantityLimit;