import React from 'react'; import { PopoverProps } from 'antd'; import './index.less'; interface PisellPhoneKeyboardProps { value?: string; onChange: (e: string) => void; popoverProps: PopoverProps; virtualKeyboardProps?: any; keyboardProps?: any; virtualKeyInputProps?: any; } declare const PisellPhoneKeyboard: (props: PisellPhoneKeyboardProps) => React.JSX.Element; export default PisellPhoneKeyboard;