import * as React from "react"; import type { ComponentProps } from "@sps-woodland/core"; import type { ClickableTagKind } from "./ClickableTag.css"; export declare function ClickableTag({ children, className, onClick, disabled, wrap, href, target, kind, onAdd, onRemove, ...rest }: ComponentProps<{ disabled?: boolean; wrap?: boolean; href?: string; target?: "_blank" | "_self" | "_parent" | "_top"; kind?: ClickableTagKind; onAdd?: () => void; onRemove?: () => void; }, HTMLDivElement>): React.ReactElement;