import { ComponentProps, FC } from "react";
import inputVariants from "./variants";
import { VariantProps } from "class-variance-authority";
export interface InputProps extends ComponentProps<"input">, VariantProps<typeof inputVariants> {
    hint?: string;
}
declare const Input: FC<InputProps>;
export default Input;
