UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

13 lines (12 loc) 366 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; interface OpenAIKeyPromptProps { onSubmit: (apiKey: string, baseUrl: string, model: string) => void; onCancel: () => void; } export declare function OpenAIKeyPrompt({ onSubmit, onCancel, }: OpenAIKeyPromptProps): React.JSX.Element; export {};