import { InputHTMLAttributes } from 'react';
import { LucideIcon } from 'lucide-react';
export interface InputProps extends Omit, "size"> {
error?: string;
leftIcon?: LucideIcon;
rightIcon?: LucideIcon;
clearable?: boolean;
onClear?: () => void;
inputSize?: "sm" | "md" | "lg";
}
export declare const Input: import('react').ForwardRefExoticComponent>;
//# sourceMappingURL=Input.d.ts.map