/**
 * The authentication options for Azure OpenAI On Your Data when using an API key.
 */
export type AzureOpenAiOnYourDataApiKeyAuthenticationOptions = {
    type: string;
} & {
    /**
     * The API key to use for authentication.
     */
    key: string;
} & Record<string, any>;
//# sourceMappingURL=on-your-data-api-key-authentication-options.d.ts.map