import { CSSProperties } from 'react'; import { TagVariantColor, VariantSize, VariantType } from './Tag'; type StylesProps = { [component in VariantType]: { [variant in VariantSize]: CSSProperties & { px?: string; py?: string; }; }; }; export declare const STYLES: StylesProps; export declare const getTagStyle: (variant: TagVariantColor, transparent: boolean) => { bg: string; color: string; '--current-shadow-color': string; '&:hover': { '.cap-tag__closeButton': { opacity: number; right: string; mr: string; }; }; }; export {};