/*! Strand UI | MIT License | dillingerstaffing.com */ import type { ComponentChildren, JSX } from "preact"; export interface TagProps extends Omit, "children"> { variant?: "solid" | "outlined"; status?: "default" | "teal" | "blue" | "amber" | "red"; /** Show the remove control. */ removable?: boolean; /** Called when the remove control is pressed. */ onRemove?: () => void; /** Accessible name of the remove control. */ removeLabel?: string; children?: ComponentChildren; } /** * Compact label for categorisation or status. * * @example * Active */ export declare const Tag: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Tag.d.ts.map