import type { ComponentProps } from "react";
import { InputRoot } from "./input";
export declare const Input: (({ className, fullWidth, variant: variantProp, ...rest }: import("./input").InputRootProps) => import("react/jsx-runtime").JSX.Element) & {
    Root: ({ className, fullWidth, variant: variantProp, ...rest }: import("./input").InputRootProps) => import("react/jsx-runtime").JSX.Element;
};
export type Input = {
    Props: ComponentProps<typeof InputRoot>;
    RootProps: ComponentProps<typeof InputRoot>;
};
export { InputRoot };
export type { InputRootProps, InputRootProps as InputProps } from "./input";
export { inputVariants } from "@heroui/styles";
export type { InputVariants } from "@heroui/styles";
