/** * Tag — ported 1:1 from Veryfront Studio. A small rounded chip for metadata / * labels, with link and button affordances plus a wrapping group. Semantic * classes remapped to veryfront's `[var(--token)]` vocabulary. Private to the * chat module. * * @module react/components/ui/tag */ import * as React from "react"; /** Static metadata chip. */ export declare function Tag({ className, children, ...props }: React.HTMLAttributes): React.ReactElement; /** Props accepted by ``. */ export interface TagLinkProps extends React.AnchorHTMLAttributes { href: string; } /** Tag rendered as an external link. */ export declare function TagLink({ className, ...props }: TagLinkProps): React.ReactElement; /** Tag rendered as a button. */ export declare function TagButton({ className, ...props }: React.ButtonHTMLAttributes): React.ReactElement; /** Wrapping container for a row of tags. */ export declare function TagGroup({ className, children, ...props }: React.HTMLAttributes): React.ReactElement; //# sourceMappingURL=tag.d.ts.map