/** * Default configuration for the Webex Contact Center SDK. * * @public * @example * import config from './config'; * const allowMultiLogin = config.cc.allowMultiLogin; * @ignore */ declare const _default: { /** * Contact Center configuration options. * @public */ cc: { /** * Whether to allow multiple logins from different devices. * @type {boolean} * @default false */ allowMultiLogin: boolean; /** * Whether to automatically attempt relogin on connection loss. * @type {boolean} * @default true */ allowAutomatedRelogin: boolean; /** * The type of client making the connection. * @type {string} * @default 'WebexCCSDK' */ clientType: string; /** * Whether to enable keep-alive messages. * @type {boolean} * @default false */ isKeepAliveEnabled: boolean; /** * Whether to force registration. * @type {boolean} * @default true */ force: boolean; /** * Metrics configuration for the client. * @public */ metrics: { /** * Name of the client for metrics. * @type {string} * @default 'WEBEX_JS_SDK' */ clientName: string; /** * Type of client for metrics. * @type {string} * @default 'WebexCCSDK' */ clientType: string; }; }; }; export default _default;