import { PopoverProps } from "antd"; //#region src/pro/pisellPhoneKeyboard/index.d.ts interface PisellPhoneKeyboardProps { value?: string; onChange: (e: string) => void; popoverProps: PopoverProps; virtualKeyboardProps?: any; keyboardProps?: any; virtualKeyInputProps?: any; } declare const PisellPhoneKeyboard: (props: PisellPhoneKeyboardProps) => JSX.Element; //#endregion export { PisellPhoneKeyboard };