/**
 * @ignore
 * @module VITEENV
 */
// / <reference types="vite/client" />
/// <reference types="vite/client" />

interface ImportMetaEnv {
  [x: string]: string;
  readonly VITE_URL_TRANSLATOR_API: string;
  readonly VITE_SECRET_TRANSLATOR_API: string;
  readonly VITE_URL_DICTIONARY_API: string;
  readonly VITE_SECRET_DICTIONARY_API: string;
  readonly VITE_BUILD_TARGET: "site" | "extension";
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}

declare const __BUILD_TARGET__: "site" | "extension";
