export declare const ENV: { online: string; pre: string; daily: string; }; declare const getHostByEnv: (env: keyof typeof ENV, host: string) => string; export default getHostByEnv;