import { ChannelParticipantGrants } from '../proto/participant'; export interface IChannelParticipantArgs { apiHost: string; apiKey: string; secretKey: string; } export interface IAddParticipantToChannelArgs { channelId: string; identifier: string; grants: ChannelParticipantGrants; customData?: Record; } export interface IGetChannelAccessTokenArgs { identifier: string; channelId: string; }