import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; import { Button } from './button'; declare function InputGroup({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare const inputGroupAddonVariants: (props?: ({ align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function InputGroupAddon({ className, align, ...props }: React.ComponentPropsWithoutRef<'div'> & VariantProps): import("react/jsx-runtime").JSX.Element; declare const inputGroupButtonVariants: (props?: ({ size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function InputGroupButton({ className, type, variant, size, ...props }: Omit, 'size'> & VariantProps): import("react/jsx-runtime").JSX.Element; declare function InputGroupText({ className, ...props }: React.ComponentPropsWithoutRef<'span'>): import("react/jsx-runtime").JSX.Element; declare function InputGroupInput({ className, ref, ...props }: React.ComponentPropsWithoutRef<'input'> & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; declare function InputGroupTextarea({ className, ...props }: React.ComponentPropsWithoutRef<'textarea'>): import("react/jsx-runtime").JSX.Element; export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, };