import type { TagVariants } from "../tag"; import type { ComponentPropsWithRef } from "react"; import { tagGroupVariants } from "@heroui/styles"; import React from "react"; import { TagGroup as TagGroupPrimitive, TagList as TagListPrimitive } from "react-aria-components/TagGroup"; type TagGroupContext = { slots?: ReturnType; size?: TagVariants["size"]; variant?: TagVariants["variant"]; }; declare const TagGroupContext: React.Context; type TagGroupRootProps = ComponentPropsWithRef & { size?: TagVariants["size"]; variant?: TagVariants["variant"]; }; declare const TagGroupRoot: ({ children, className, size, variant, ...restProps }: TagGroupRootProps) => import("react/jsx-runtime").JSX.Element; type TagGroupListProps = ComponentPropsWithRef> & {}; declare const TagGroupList: ({ children, className, ...restProps }: TagGroupListProps) => import("react/jsx-runtime").JSX.Element; export { TagGroupRoot, TagGroupList, TagGroupContext }; export type { TagGroupRootProps, TagGroupListProps };