import { AIClient } from "../../HugBotEntity/HugBotEntity";
/** Mock AI client for testing purposes.
 * @param {number} maxDelay - maximum delay between responses */
export declare class AIClientMock implements AIClient {
    #private;
    private maxDelay;
    constructor(maxDelay?: number);
    /** Send request to mock AI api.
    * @return Promise<string> */
    sendRequest(prompt: string, apiToken?: string): Promise<string>;
}
//# sourceMappingURL=AIClientMock.d.ts.map