import { default as React } from 'react';
import { AchsStatus } from '../../../types';
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    status?: AchsStatus;
    iconClassName?: string;
    iconColor?: string;
}
export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
export default Input;
