/**
 * @license
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */
import { LoadedSettings } from '../config/settings.js';
import { type Config } from 'buroventures-harald-code-core';
interface AppProps {
    config: Config;
    settings: LoadedSettings;
    startupWarnings?: string[];
    version: string;
}
export declare const AppWrapper: (props: AppProps) => import("react/jsx-runtime").JSX.Element;
export {};
