import type { ComponentProps, ComponentPropsWithoutRef, ReactNode } from 'react'; import { PopoverContent } from '../../components/Popover'; declare const DEFAULT_CTA_URL = "https://help.cleanlab.ai/tlm/faq/#how-does-it-work"; declare const DEFAULT_CONTENT_POPOVER_PROPS: ComponentProps; declare const TlmPopoverContent: ({ ctaUrl, score, explanation, }: { ctaUrl?: string; score?: number; explanation?: ReactNode; }) => import("react/jsx-runtime").JSX.Element; declare function getTlmScoreVariant(score?: number): "green" | "red" | "yellow" | "neutral"; declare const TlmScoreChip: import("react").ForwardRefExoticComponent<{ score?: number; explanation?: ReactNode; error?: string | false; popoverContent?: ReactNode; popoverContentProps?: ComponentProps; ctaUrl?: string; } & Omit>>, "variant" | "asChild"> & import("react").RefAttributes>; export { DEFAULT_CONTENT_POPOVER_PROPS, DEFAULT_CTA_URL, getTlmScoreVariant, TlmPopoverContent, TlmScoreChip, };