import { default as Color } from 'color'; export interface Props { text: string; textColor: Color; borderColor?: Color; disabled?: boolean; fillBackgroundColor?: Color; styles?: React.CSSProperties; tagStyles?: React.CSSProperties; onClick?: () => void; } declare const Tag: ({ textColor, fillBackgroundColor, borderColor, disabled, text, styles, tagStyles, onClick, }: Props) => import("react/jsx-runtime").JSX.Element; export default Tag;