/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import type { SixthUserInfo } from 'sixth-cli-core'; interface SixthAuthHandlerProps { onAuthComplete: (userInfo: SixthUserInfo) => void; onAuthError: (error: string) => void; } export declare const SixthAuthHandler: React.FC; export {};