buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
13 lines (12 loc) • 358 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { type Config } from 'buroventures-harald-code-core';
interface PrivacyNoticeProps {
onExit: () => void;
config: Config;
}
export declare const PrivacyNotice: ({ onExit, config }: PrivacyNoticeProps) => import("react/jsx-runtime").JSX.Element;
export {};