import { type ComponentPropsWithRef } from "react"; export interface InputProps { error?: string; classNamePrefix?: string; } export type InputComponentProps = InputProps & ComponentPropsWithRef<"input">; declare const Input: { ({ error, className, classNamePrefix, ref, ...rest }: InputComponentProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export default Input;