/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * 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.
 */
import type { CreateChatCompletionRequestMessage1 } from './CreateChatCompletionRequestMessage1';
/**
 *
 * @export
 * @interface CreateChatCompletionResponseChoice1
 */
export interface CreateChatCompletionResponseChoice1 {
    /**
     *
     * @type {number}
     * @memberof CreateChatCompletionResponseChoice1
     */
    index: number;
    /**
     *
     * @type {CreateChatCompletionRequestMessage1}
     * @memberof CreateChatCompletionResponseChoice1
     */
    message: CreateChatCompletionRequestMessage1;
    /**
     *
     * @type {string}
     * @memberof CreateChatCompletionResponseChoice1
     */
    finishReason?: string | null;
}
/**
 * Check if a given object implements the CreateChatCompletionResponseChoice1 interface.
 */
export declare function instanceOfCreateChatCompletionResponseChoice1(value: object): value is CreateChatCompletionResponseChoice1;
export declare function CreateChatCompletionResponseChoice1FromJSON(json: any): CreateChatCompletionResponseChoice1;
export declare function CreateChatCompletionResponseChoice1FromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateChatCompletionResponseChoice1;
export declare function CreateChatCompletionResponseChoice1ToJSON(json: any): CreateChatCompletionResponseChoice1;
export declare function CreateChatCompletionResponseChoice1ToJSONTyped(value?: CreateChatCompletionResponseChoice1 | null, ignoreDiscriminator?: boolean): any;
