export declare const API_URL: { readonly production: "https://api.coinvoyage.io/v2"; readonly development: "https://acc-api.coinvoyage.io/v2"; readonly local: "http://localhost:8000/v2"; }; export type APIEnvironment = keyof typeof API_URL; export declare const WS_URL: Record;