import { type ComponentType } from 'react'; export declare const projectTagVariants: readonly ["pending", "in-progress", "submitted", "in-review", "success", "failed", "expired"]; export type ProjectTagVariant = (typeof projectTagVariants)[number]; export type ProjectTagIconComponent = ComponentType<{ className?: string; }>; export declare const projectTagVariantLabels: { pending: string; 'in-progress': string; submitted: string; 'in-review': string; success: string; failed: string; expired: string; }; export declare const projectTagVariantIcons: { pending: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; 'in-progress': import("react").ForwardRefExoticComponent & import("react").RefAttributes>; submitted: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; 'in-review': import("react").ForwardRefExoticComponent & import("react").RefAttributes>; success: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; failed: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; expired: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; };