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