import { ComponentProps } from 'react';
export interface InputProps extends ComponentProps<"input"> {
}
/**
 * A styled HTML input component that provides consistent styling across the application.
 * Suitable for text inputs, search fields, and other form inputs.
 *
 * @example
 * ```tsx
 * // Basic text input
 * <Input placeholder="Enter your name" />
 * ```
 *
 * @example
 * ```tsx
 * // Search input
 * <Input type="search" placeholder="Search..." />
 * ```
 *
 * @example
 * ```tsx
 * // Disabled input
 * <Input disabled value="Cannot edit" />
 * ```
 */
export declare const Input: ({ className, type, ...props }: InputProps) => import("react").JSX.Element;
