/// <reference types="vite/client" />

interface ImportMetaEnv {
    readonly VITE_API_URL: string;
    readonly VITE_APP_URL?: string;
    readonly VITE_TRANSCRIPTIONS_ENDPOINT?: string;
    readonly VITE_AGENTS_ENDPOINT?: string;
    readonly VITE_CONTACTS_ENDPOINT?: string;
    readonly VITE_CDRS_ENDPOINT?: string;
    readonly VITE_CDRS_UPLOAD_AUDIO_ENDPOINT?: string;
    readonly VITE_CDRS_DELETE_ENDPOINT?: string;
    readonly VITE_WORDCLOUD_ENDPOINT?: string;
    readonly VITE_SETTINGS_USER_ENDPOINT?: string;
    readonly VITE_SETTINGS_UPDATE_ENDPOINT?: string;
    readonly VITE_SETTINGS_ACCOUNT_DESTROY_ENDPOINT?: string;
    readonly VITE_ACCOUNT_UPDATE_ENDPOINT?: string;
}

interface ImportMeta {
    readonly env: ImportMetaEnv;
}
