export { apiGraphqlUrl, webHttpUrl } from './config/env'; export declare const ASSETS_ROOT = "https://f.hubspotusercontent30.net/hubfs/1984131/Assets"; /** * Platform API base URL. Set `PLATFORM_ENDPOINT` at build time from monorepo `config/.env.*`. */ export declare const PLATFORM_ENDPOINT: string; /** * Message service API base URL. Set `MESSAGE_SERVICE_ENDPOINT` at build time; * `V2_MESSAGE_ENDPOINT` is a backwards-compat env alias. */ export declare const V2_MESSAGE_ENDPOINT: string; /** Vestaboard API base URL (GraphQL host without `/graphql`). */ export declare const API_BASE_URL: string; /** Vestaboard web app base URL (simulator links). */ export declare const WEB_BASE_URL: string; /** Join API or deeplink paths to {@link PLATFORM_ENDPOINT} without duplicated slashes when the env has a trailing slash. */ export declare function platformHttpUrl(path: string): string; /** WebSocket URL for the configured platform (`https`/`http` → `wss`/`ws`). */ export declare function platformWsUrl(path: string): string;