/**
 * Representation of the 'AzureOpenAiChatCompletionRequestMessageContentPartRefusal' schema.
 */
export type AzureOpenAiChatCompletionRequestMessageContentPartRefusal = {
    /**
     * The type of the content part.
     */
    type: 'refusal';
    /**
     * The refusal message generated by the model.
     */
    refusal: string;
} & Record<string, any>;
//# sourceMappingURL=chat-completion-request-message-content-part-refusal.d.ts.map