import { DonobuException } from './DonobuException';
/**
 * Thrown when attempting to use a GPT model that doesn't exist for a given platform.
 */
export declare class GptModelNotFoundException extends DonobuException {
    readonly platform: string;
    readonly gptModel: string;
    constructor(platform: string, gptModel: string);
}
//# sourceMappingURL=GptModelNotFoundException.d.ts.map