import { InputHTMLAttributes } from 'react'; export interface LabelInputProps extends InputHTMLAttributes { isFixed: boolean; isFocused?: boolean; isError?: boolean; label?: string; } declare const LabelInput: import("react").ForwardRefExoticComponent>; export { LabelInput };