export type ListingGaugeTone = "negative" | "warning" | "progress" | "positive"; /** * Maps a listing score percentage to the arc and label colors from the Prism listing gauge spec * (0–42% red, 43–70% orange, 71–99% blue, 100% green). */ export declare const getListingGaugeTone: (percent: number) => ListingGaugeTone; export declare const listingGaugeToneVariants: (props?: ({ tone?: "negative" | "positive" | "progress" | "warning" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type ListingGaugeProps = Readonly<{ value: number; max?: number; label?: string; className?: string; }>; export declare const ListingGauge: ({ value, max, label, className, }: ListingGaugeProps) => import("react").JSX.Element; //# sourceMappingURL=ListingGauge.d.ts.map