import { ViewStyle, TextStyle } from 'react-native'; export interface DbNumberInputProps { /** 最大值 */ max?: number; /** 最小值,默认为 0 */ min?: number; /** 初始值,默认为 0 */ initialValue?: number; /** 数量变化回调 */ onChange?: (value: number) => void; /** 样式变体 */ variant?: 'primary' | 'outline' | 'ghost'; /** 尺寸: small(24px高), medium(28px高), large(32px高) */ size?: 'small' | 'medium' | 'large'; /** 边框类型: bordered(有边框), borderless(无边框) */ type?: 'bordered' | 'borderless'; /** 自定义颜色 */ color?: string; /** 自定义容器样式 */ style?: ViewStyle; /** 自定义文字样式 */ textStyle?: TextStyle; }