import type { MunaClient } from "../client"; import type { Predictor } from "../types"; export interface RetrievePredictorInput { /** * Predictor tag. */ tag: string; } export declare class PredictorService { private readonly client; constructor(client: MunaClient); /** * Retrieve a predictor. * @param input Input arguments. * @returns Predictor. */ retrieve({ tag }: RetrievePredictorInput): Promise; }