import type { InputHTMLAttributes } from 'react';
declare const Input: import("react").ForwardRefExoticComponent<{
    asChild?: boolean;
} & InputHTMLAttributes<HTMLInputElement> & {
    variant?: "outline" | "primary" | undefined;
    size?: "md" | "lg" | undefined;
} & import("react").RefAttributes<HTMLInputElement>>;
export { Input };
