import { Color, FCC } from "../types";
export interface Props {
color?: Color;
textColor?: "dark" | "white";
onClick?: VoidFunction;
onRemove?: VoidFunction;
disabled?: boolean;
closable?: boolean;
status?: string;
}
export declare const Tag: FCC<Props>;