import type { MunaClient } from "../client"; import type { Prediction } from "../types"; import type { CreatePredictionInput, DeletePredictionInput } from "./prediction"; export interface LocalPredictionLike { create(input: CreatePredictionInput): Promise; stream(input: CreatePredictionInput): AsyncGenerator; delete(input: DeletePredictionInput): Promise; } export declare function createLocalPredictionService(client: MunaClient): LocalPredictionLike;