import { LLMInput, InferenceResult } from "./types";
export declare class InferenceEngine {
    private esClient;
    private logger;
    private openaiClient;
    private openLLMClient;
    constructor(logLevel?: "DEBUG" | "INFO" | "WARNING" | "ERROR");
    callInference(input: LLMInput): Promise<InferenceResult>;
}
