import React from 'react'; import { PresetsProps } from './Presets'; import { KeyboardProps } from '../Keyboard'; import { RightItemsStyleProps } from '../Amount'; import './index.less'; export interface BaseNumberKeyboardProps { placeholder?: string; format?: (val: string) => React.ReactNode; defaultValue?: string | number; doneText?: string; resetText?: string; onChange?: (val: string) => void; onEnter?: (val: string) => void; value?: string | number; max?: number; min?: number; presets?: PresetsProps['presets']; defaultSelect?: boolean; rightItemsStyle?: RightItemsStyleProps; customDisplay?: React.ReactNode | ((props: any) => React.ReactNode); keyboardProps?: KeyboardProps; style?: React.CSSProperties; } declare const BaseNumberKeyboard: (props: BaseNumberKeyboardProps) => React.JSX.Element; export default BaseNumberKeyboard;