import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import type { Theme, DimensionValue } from '../../types'; type Props = { defaultValue?: number; disabled?: boolean; inputWidth?: DimensionValue; max?: number | null; min?: number | null; onChange?: (value: number) => void; step?: number; style?: StyleProp; theme: Theme; value?: number; variant?: 'default' | 'flat'; }; declare const _default: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ defaultValue, disabled, inputWidth, max, min, onChange, step, style, theme, value, variant, ...rest }: Props) => React.JSX.Element), {}>; export default _default; //# sourceMappingURL=NumberInput.d.ts.map