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. @default false */ error?: boolean; /** Forwarded ref to the underlying `` element. */ ref?: Ref; } export declare function Input({ size, error, className, ref, ...rest }: InputProps): import("react").JSX.Element; export {}; //# sourceMappingURL=Input.d.ts.map