import { CSSProperties } from 'react';
type TagLabelProps = {
    name: string;
    color?: string;
    size?: number;
    style?: CSSProperties;
    triangleSize?: number;
    onClick?: () => void;
};
declare const TagLabel: ({ name, color, size: bodySize, style, triangleSize, onClick, }: TagLabelProps) => import("react/jsx-runtime").JSX.Element;
export default TagLabel;
