/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; interface AzureOpenAIKeyPromptProps { onSubmit: (apiKey: string, endpoint: string, deployment: string) => void; onCancel: () => void; } export declare function AzureOpenAIKeyPrompt({ onSubmit, onCancel, }: AzureOpenAIKeyPromptProps): React.JSX.Element; export {};