/**
 * 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 { CreateChatCompletionRequestMessage } from './CreateChatCompletionRequestMessage';
/**
 *
 * @export
 * @interface CreateChatCompletionResponseChoice
 */
export interface CreateChatCompletionResponseChoice {
    /**
     *
     * @type {number}
     * @memberof CreateChatCompletionResponseChoice
     */
    index: number;
    /**
     *
     * @type {CreateChatCompletionRequestMessage}
     * @memberof CreateChatCompletionResponseChoice
     */
    message: CreateChatCompletionRequestMessage;
    /**
     *
     * @type {string}
     * @memberof CreateChatCompletionResponseChoice
     */
    finishReason?: string | null;
}
/**
 * Check if a given object implements the CreateChatCompletionResponseChoice interface.
 */
export declare function instanceOfCreateChatCompletionResponseChoice(value: object): value is CreateChatCompletionResponseChoice;
export declare function CreateChatCompletionResponseChoiceFromJSON(json: any): CreateChatCompletionResponseChoice;
export declare function CreateChatCompletionResponseChoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateChatCompletionResponseChoice;
export declare function CreateChatCompletionResponseChoiceToJSON(json: any): CreateChatCompletionResponseChoice;
export declare function CreateChatCompletionResponseChoiceToJSONTyped(value?: CreateChatCompletionResponseChoice | null, ignoreDiscriminator?: boolean): any;
