///
///
interface ImportMetaEnv {
/** Base URL of the gateway Connect endpoint. Empty in dev (same-origin proxy). */
readonly VITE_GATEWAY_URL?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
/** App version string, injected by Vite's define from `git describe` at build time. */
declare const __APP_VERSION__: string;