import { ChatObject, UserAuthHeaders } from '../../interfaces'; declare type NewChat = (host: string, headers: UserAuthHeaders, title: string | undefined, callback: (chat: ChatObject) => void) => void; export declare const newChat: NewChat; export {};