export type TagVariant = 'accent' | 'primary' | 'secondary' | 'error' | 'success' | 'warning' | 'info' | 'static-black' | 'static-white'; export type TagType = 'outlined' | 'filled' | 'outlined-icon' | 'filled-icon'; export type TagSize = 'sm' | 'md' | 'lg' | 'xl'; export interface TagProps { variant?: TagVariant; type?: TagType; size?: TagSize; rounded?: boolean; icon?: React.ReactNode | string; children?: React.ReactNode; } export declare const Tag: ({ variant, type, size, rounded, icon, children, }: TagProps) => import("react/jsx-runtime").JSX.Element;