import React, { CSSProperties } from 'react';
export type TagProps = React.HTMLAttributes<HTMLSpanElement> & {
    children: string;
    textColor?: CSSProperties['color'];
    bgColor?: CSSProperties['backgroundColor'];
    icon?: React.ReactNode;
    iconPosition?: 'start' | 'end';
    className?: string;
};
declare const Tag: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & {
    children: string;
    textColor?: CSSProperties["color"];
    bgColor?: CSSProperties["backgroundColor"];
    icon?: React.ReactNode;
    iconPosition?: "start" | "end";
    className?: string;
} & React.RefAttributes<HTMLSpanElement>>;
export { Tag, };
//# sourceMappingURL=tag.d.ts.map