import { ReactNode } from "react";
import { type VariantProps } from "class-variance-authority";
declare const groupVariants: (props?: ({
    variant?: "default" | "dark" | "subtle" | null | undefined;
    density?: "compact" | "comfortable" | null | undefined;
    bordered?: boolean | null | undefined;
    divided?: boolean | null | undefined;
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
export type ItemGroupProps = {
    children: ReactNode;
    propagateVariant?: boolean;
    stripChildBorders?: boolean;
    className?: string;
} & VariantProps<typeof groupVariants>;
export default function ItemGroup({ children, className, variant, density, bordered, divided, propagateVariant, stripChildBorders, }: ItemGroupProps): import("react/jsx-runtime").JSX.Element;
export {};
