import type { MunaClient } from "../client"; import type { Prediction } from "../types"; import type { CreatePredictionInput } from "./prediction"; export declare class RemotePredictionService { private readonly client; constructor(client: MunaClient); /** * Create a remote prediction. * @param input Prediction input. * @returns Prediction. */ create(input: CreatePredictionInput): Promise; /** * Create a streaming prediction. * @param input Prediction input. * @returns Prediction stream. */ stream(input: CreatePredictionInput): AsyncGenerator; }