import { ChainOfThoughtData } from '../types'; export declare const toConfidenceLevelType: (v: string) => "medium" | "high" | "low"; export type ConfidenceLevelType = ReturnType; export declare const getConfidenceLevel: (confidence?: number) => string; interface ChainOfThoughtTooltipProps { data: ChainOfThoughtData; } export declare const ChainOfThoughtTooltip: ({ data }: ChainOfThoughtTooltipProps) => import("react/jsx-runtime").JSX.Element | null; export {};