import type { PropsFor } from "../../types.js"; export type TagVariant = TagProps["variant"]; export type TagProps = PropsFor<"button", { /** Indicate selected tag */ active?: boolean; /** Set a style with variant; 'basic' (default) or 'compact' */ variant?: "basic" | "compact"; /** Click handler */ onClick: (event: React.MouseEvent | React.KeyboardEvent) => void; }>; /** * Clickable Tag - also see `` * * @see https://bifrost.intility.com/react/tag */ declare const Tag: import("react").ForwardRefExoticComponent>; export default Tag;