import React from 'react'; import { TdInputProps } from './type'; import { StyledProps } from '../common'; export interface InputProps extends TdInputProps, StyledProps { required?: boolean; readonly?: boolean; } export interface InputRefProps { focus?: () => void; blur?: () => void; } declare const Input: React.ForwardRefExoticComponent>; export default Input;