import { type ComponentPropsWithoutRef, type ReactNode, type Ref } from 'react'; import { type ProjectTagIconComponent, type ProjectTagVariant } from './ProjectTag.constants'; export type ProjectTagSize = 'sm' | 'md' | 'lg'; export type ProjectTagProps = Omit, 'children' | 'color'> & { children?: ReactNode; icon?: ProjectTagIconComponent | null; ref?: Ref; size?: ProjectTagSize; variant?: ProjectTagVariant; }; export declare const ProjectTag: ({ children, className, icon, ref, size, variant, ...props }: ProjectTagProps) => import("react/jsx-runtime").JSX.Element;