import Api from "../../Api"; import { BaseService } from "../BaseService"; import { ChatGPTService } from "./chat-gpt.service"; import { DalleService } from "./dalle.service"; export declare class AIService extends BaseService { readonly chatGPT: ChatGPTService; constructor(api: Api); useChatGPT(apiKey?: string): ChatGPTService; useDalle(apiKey?: string): DalleService; }