///
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent;
export default component;
}
interface Umami {
track(event: string, data?: Record): void;
}
declare const umami: Umami | undefined;
declare module 'three';
interface ImportMetaEnv {
readonly VITE_PRIVACY_POLICY_URL?: string;
readonly VITE_COOKIE_POLICY_URL?: string;
readonly VITE_LEGAL_NOTICE_URL?: string;
}