import { VuiComponent } from "../core/vui.js";
import { TagProps } from "./tag.types.js";

//#region src/tag/tag.d.ts
/**
 * Displays text, icons or custom content. Can be made interactive or include a
 * dismiss affordance. When `isInteractive` (or `onClick` without `onDelete`)
 * is set, the tag renders as a `<button>` so it is keyboard-activatable.
 */
declare const Tag: VuiComponent<"span", TagProps>;
//#endregion
export { Tag };

//# sourceMappingURL=tag.d.ts.map