import * as React from "react"; import type { ComponentProps } from "@sps-woodland/core"; import type { IconName } from "@sps-woodland/tokens"; import type { TagKind } from "../tag/Tag.css"; export declare function SplitTag({ children, className, color, href, target, icon, tagKey, value, wrap, ...rest }: ComponentProps<{ color: TagKind; href?: string; target?: "_blank" | "_self" | "_parent" | "_top"; icon?: boolean | IconName; tagKey: string; value: string; wrap?: boolean; }, HTMLDivElement>): React.ReactElement;