import type { EnvironmentBuilder } from '../types'; export interface Livechat { host: string; } export declare const defaults: { LIVECHAT_HOST: string; }; export declare function GetLivechat(env: EnvironmentBuilder): Livechat;