///
import { HttpService } from '@nestjs/axios';
import { EngineExtension } from './engine.abstract';
import stream from 'stream';
export declare abstract class OAIEngineExtension extends EngineExtension {
protected readonly httpService: HttpService;
abstract apiUrl: string;
constructor(httpService: HttpService);
inference(createChatDto: any, headers: Record): Promise;
}