import type { FC, HTMLAttributes } from 'react';
import { type VariantProps } from 'class-variance-authority';
import { type TestableProps } from '../../utils/testId';
export declare const inputGroupVariants: (props?: ({
size?: "small" | "medium" | "default" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type InputGroupSize = NonNullable['size']>;
type InputGroupProps = HTMLAttributes & VariantProps & TestableProps;
export declare const InputGroup: FC;
export {};