import IceServer from './IceServer'; type ConversationParams = { token: string; endpoint: string; wt_endpoint?: string; turn_server?: IceServer; stun_server?: IceServer; client_type?: string; device_idx?: number; isp_as_no?: number; isp_as_org?: string; loc_cc?: string; loc_reg?: string; external_user_type?: string; }; export type ExternalConversationParams = { et: number; iv: boolean; srcp: string; stne: string; tkn: string; trne: string; trnp: string; trnu: string; wse: string; wte: string; }; export default ConversationParams;