export declare enum Hosts { VENDOR_PANEL = "VENDOR_PANEL_URL", ADMIN_PANEL = "ADMIN_PANEL_URL", STOREFRONT = "STOREFRONT_URL", BACKEND = "BACKEND_URL" } export declare const defaultHosts: { VENDOR_PANEL_URL: string; ADMIN_PANEL_URL: string; STOREFRONT_URL: string; BACKEND_URL: string; }; export declare const hostTypeToResetPasswordPath: { VENDOR_PANEL_URL: string; STOREFRONT_URL: string; BACKEND_URL: string; ADMIN_PANEL_URL: string; }; export declare const actorTypeToHost: { readonly customer: Hosts.STOREFRONT; readonly seller: Hosts.VENDOR_PANEL; readonly user: Hosts.BACKEND; }; export declare const buildHostAddress: (hostType: Hosts, path?: string) => import("node:url").URL; export declare const buildResetPasswordUrl: (hostType: Hosts, token?: string) => import("node:url").URL; export declare const buildInviteUrl: (token: string) => import("node:url").URL; //# sourceMappingURL=hosts.d.ts.map