import type * as React from "react"; import type { BiasCalculationMethod, InferenceEngine } from "./method-status-indicator"; export interface MethodologyTooltipProps { method: BiasCalculationMethod; engine: InferenceEngine; children: React.ReactNode; } declare function MethodologyTooltip({ method, engine, children }: MethodologyTooltipProps): import("react/jsx-runtime").JSX.Element; export { MethodologyTooltip }; //# sourceMappingURL=methodology-tooltip.d.ts.map