/// export interface InputProps { className?: string; icon?: IconProps; nativeInput?: NativeInputProps; } export declare const Input: ({ className, nativeInput, icon, }: InputProps) => JSX.Element; type NativeInputProps = React.HTMLAttributes & { className?: string; onChange?: (e: React.ChangeEvent) => void; value?: string; }; type IconProps = React.HTMLAttributes & { className?: string; children?: React.ReactNode; onClick?: () => void; }; export {};