import React from 'react'; import { InputProps } from 'antd'; import './index.less'; export interface VirtualKeyInputProps extends InputProps { previewValue?: string; renderInput?: (props: any) => any; showDelete?: boolean; onValueSelect?: (selected: boolean) => void; defaultSelect?: boolean; style?: React.CSSProperties; } declare const VirtualKeyInput: (props: VirtualKeyInputProps) => React.JSX.Element; export default VirtualKeyInput;