import type { FC, HTMLAttributes, HTMLInputTypeAttribute, LegacyRef } from 'react';
export interface InputProps extends HTMLAttributes<HTMLInputElement> {
    innerRef?: LegacyRef<HTMLInputElement>;
    isInvalid?: boolean;
    size?: 'sm' | 'lg' | 'xl';
    type?: HTMLInputTypeAttribute;
}
declare const Input: FC<InputProps>;
export default Input;
