import type { InputHTMLAttributes, Ref } from "react"; type Size = 24 | 32 | 40 | 48; export interface InputProps extends InputHTMLAttributes { /** Height in px (24 | 32 | 40 | 48). @default 32 */ size?: Size; /** Show error styling. Inside a Field, the Field's error also lights this. @default false */ error?: boolean; /** Forwarded ref to the underlying `` element. */ ref?: Ref; } /** Single-line text input with pixel-true heights (24–48) and an error state. * Inside a Field, id/aria-describedby/aria-invalid/required are wired * automatically (D49). */ export declare function Input({ size, error, className, ref, ...rest }: InputProps): import("react").JSX.Element; export {}; //# sourceMappingURL=Input.d.ts.map