import type { ReactNode } from 'react'; import { type TagProps as RACTagProps } from 'react-aria-components'; import type { StringLikeChildren } from '../types.js'; import type { CommonProps } from '../types.js'; export interface TagProps extends Omit, Pick { /** The content to display as the label. */ children: StringLikeChildren; /** The icon to display at the start of the tag. */ iconStart?: ReactNode; } /** * Displays a single tag within a tag group. * * See [tag group usage guidelines](https://ui.cimpress.io/components/tag-group/). */ declare const _Tag: (props: TagProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Tag as Tag }; //# sourceMappingURL=tag.d.ts.map