import type { PredictionService, PredictorService } from "../../services"; import { ChatCompletionService } from "./completions"; export declare class ChatService { /** * Create completions. */ readonly completions: ChatCompletionService; constructor(predictors: PredictorService, predictions: PredictionService); }