export interface NumberProps { max?: number; min?: number; doneText?: string; resetText: string; defaultValue?: string | number; placeholder?: string; value?: string | number; onChange?: (val: string | number) => void; onEnter?: (val: string | number) => void; defaultSelect?: boolean; selectType?: 'light' | 'dark'; backgroundColor?: string; containerBackgroundColor?: string; buttonBackgroundColor?: string; textColor?: string; resetButtonBackgroundColor?: string; resetButtonTextColor?: string; isDoneButtonFollowTheme?: boolean; doneButtonBackgroundColor?: string; doneButtonTextColor?: string; keyboardBackgroundColor?: string; keyboardButtonBackgroundColor?: string; keyboardButtonTextColor?: string; keyboardButtonHoverColor?: string; }