import { type InputHTMLAttributes } from "react"; export interface InputProps extends InputHTMLAttributes { error?: boolean; /** ID of the element that describes this input (e.g. error or helper text) */ "aria-describedby"?: string; } export declare const Input: import("react").ForwardRefExoticComponent>;