import * as React from 'react';
import { HTMLProps } from 'react';
export declare const baseClassName = "ab-Input";
export type InputProps = HTMLProps & {
type?: string;
disabled?: boolean;
list?: any;
};
declare const Input: React.ForwardRefExoticComponent & React.RefAttributes>;
export default Input;