import React from 'react'; import { BaseInputPropsWithoutChildren } from './BaseInput'; declare type InputProps = { inputRef?: React.Ref; } & BaseInputPropsWithoutChildren & Required>; export declare type BaseInputAttributes = BaseInputPropsWithoutChildren; export declare type InputAttributes = InputProps; export declare type InputTypes = InputProps['type']; declare const Input: React.FunctionComponent; export default Input;