/**
 * AskNews API
 * AskNews API
 *
 * The version of the OpenAPI document: 0.18.6
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface ReportRequest
 */
export interface ReportRequest {
    /**
     *
     * @type {Array<Array<string>>}
     * @memberof ReportRequest
     */
    prompt?: Array<Array<string>>;
    /**
     *
     * @type {string}
     * @memberof ReportRequest
     */
    model?: ReportRequestModelEnum;
    /**
     *
     * @type {string}
     * @memberof ReportRequest
     */
    logoUrl?: string;
}
/**
 * @export
 */
export declare const ReportRequestModelEnum: {
    readonly Gpt4o: "gpt-4o";
    readonly Gpt4oMini: "gpt-4o-mini";
    readonly O3Mini: "o3-mini";
    readonly Claude35SonnetLatest: "claude-3-5-sonnet-latest";
    readonly MetaLlamaMetaLlama31405BInstruct: "meta-llama/Meta-Llama-3.1-405B-Instruct";
    readonly MetaLlamaMetaLlama3370BInstruct: "meta-llama/Meta-Llama-3.3-70B-Instruct";
};
export type ReportRequestModelEnum = typeof ReportRequestModelEnum[keyof typeof ReportRequestModelEnum];
/**
 * Check if a given object implements the ReportRequest interface.
 */
export declare function instanceOfReportRequest(value: object): boolean;
export declare function ReportRequestFromJSON(json: any): ReportRequest;
export declare function ReportRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportRequest;
export declare function ReportRequestToJSON(value?: ReportRequest | null): any;
