import { HTMLAttributes } from "react";
declare type ExplorerTagWrapperProps = HTMLAttributes<HTMLSpanElement> & {
    isFilled?: boolean;
    palette: string;
    size: "small" | "medium";
    tagStyle?: Function;
    withCloseBtn?: boolean;
};
export declare type TagProps = ExplorerTagWrapperProps & {
    label: string;
};
declare const _default: (props: TagProps) => JSX.Element;
export default _default;
