import React from 'react'; type BuiltinFlavor = 'primary' | 'success' | 'danger' | 'warning' | 'neutral'; type ShadedFlavor = BuiltinFlavor | `${BuiltinFlavor}+` | `${BuiltinFlavor}-`; export interface TyTagCSSProperties extends React.CSSProperties { '--tag-bg'?: string; '--tag-color'?: string; '--tag-border-color'?: string; } export interface TyTagProps extends Omit, 'style' | 'onClick'> { flavor?: ShadedFlavor | (string & {}); size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; notPill?: boolean; clickable?: boolean; dismissible?: boolean; disabled?: boolean; selected?: boolean; value?: string; style?: TyTagCSSProperties; onClick?: (event: CustomEvent) => void; onTagDismiss?: (event: CustomEvent) => void; children?: React.ReactNode; } export declare const TyTag: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=TyTag.d.ts.map