import * as React from 'react'; /** * Input component props */ export type InputProps = React.InputHTMLAttributes; /** * Input component - Styled text input field * * A flexible input component with consistent styling using semantic tokens. * Supports all native HTML input attributes including type, placeholder, disabled, etc. * * @example Basic usage * ```tsx * * ``` * * @example With React Hook Form * ```tsx * ( * * Email * * * * * * )} * /> * ``` * * @example Different input types * ```tsx * * * * * ``` */ export declare function Input({ ref, className, type, ...props }: InputProps & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Input.d.ts.map