import type { PredictInput, PredictOutput } from "../types.js"; export interface TextPredictionRequest { input: string; } export interface TextPredictionResult { output: PredictOutput; } export declare class TextPredictionsClient { private readonly runPrediction; constructor(runPrediction: (input: PredictInput) => Promise); create(request: TextPredictionRequest): Promise; } export declare class OctomilText { readonly predictions: TextPredictionsClient; constructor(runPrediction: (input: PredictInput) => Promise); predict(input: string): Promise; } //# sourceMappingURL=octomil-text.d.ts.map