type NoCodeConstants = { noCodeDomain: string; }; /** * Resolve the base host domain (e.g. `cc-cluster-2.io`). * When a `hostDomain` is provided (e.g. via CometChatApp.init) it is used as-is; * otherwise it falls back to the environment-based default (live vs staging). * This is the single source of truth shared by the UI Kit host and No-Code API. */ export declare const getHostDomain: (hostDomain?: string) => string; /** * Resolve the No-Code API domain (`https://apivcb./v1`), * derived from the same base host domain as the UI Kit host. */ export declare const getNoCodeDomain: (hostDomain?: string) => string; declare const noCodeConstants: NoCodeConstants; export default noCodeConstants;