import { type VariantProps } from "class-variance-authority"; import type * as React from "react"; export type BiasCalculationMethod = "logprobs_exact" | "logprobs_fallback_latency"; export type InferenceEngine = "browser" | "ollama"; declare const methodStatusVariants: (props?: ({ method?: "logprobs_exact" | "logprobs_fallback_latency" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface MethodStatusIndicatorProps extends React.HTMLAttributes, VariantProps { method: BiasCalculationMethod; engine: InferenceEngine; model: string; showTooltip?: boolean; } declare function MethodStatusIndicator({ className, method, engine, model, showTooltip, ...props }: MethodStatusIndicatorProps): import("react/jsx-runtime").JSX.Element; export { MethodStatusIndicator, methodStatusVariants }; //# sourceMappingURL=method-status-indicator.d.ts.map