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