import * as React from 'react'; export interface PropsType { prefixCls: string; disabled?: boolean; onPressIn: (e: any) => void; onPressOut: (e: any) => void; role?: string; className?: string; } declare const InputHandler: React.FC; export default InputHandler;