import { Input } from "@/components/ui/input";
import React from "react";
type InputGroupProps = {
name: string;
label?: string;
} & React.ComponentProps<typeof Input>;
export default function InputGroup({ name, label, className, ...props }: InputGroupProps): React.JSX.Element;
export {};