buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
16 lines (15 loc) • 555 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import React from 'react';
import { LoadedSettings, SettingScope } from '../../config/settings.js';
import { AuthType } from 'buroventures-harald-code-core';
interface AuthDialogProps {
onSelect: (authMethod: AuthType | undefined, scope: SettingScope) => void;
settings: LoadedSettings;
initialErrorMessage?: string | null;
}
export declare function AuthDialog({ onSelect, settings, initialErrorMessage, }: AuthDialogProps): React.JSX.Element;
export {};