import * as React from 'react'; import { StyleData, onStyleChange } from '../../utils/types'; import './index.less'; interface numberProps { styleKey: string; styleData: StyleData | any; onStyleChange?: onStyleChange; unit?: string | string[]; min?: number; max?: number; style?: any; className?: string; field?: any; placeholderScale?: number; defaultPlaceholder?: string; useComputedStyle?: boolean; onChangeFunction?: any; multiProp?: any; } declare const _default: (props: numberProps) => React.JSX.Element; export default _default;