import type model from '@skyway-sdk/model'; export declare type ChannelOpenedEvent = Record; export declare type ChannelClosedEvent = Record; export interface ChannelMetadataUpdatedEvent { channel: { metadata: string; }; } export declare type ChangedEvent = Record; export interface MemberJoinedEvent { member: model.Member; } export interface MemberLeftEvent { member: model.Member; } export interface MemberMetadataUpdatedEvent { member: model.Member; } export interface StreamPublishedEvent { publication: model.Publication; } export interface StreamUnpublishedEvent { publication: model.Publication; } export interface PublicationMetadataUpdatedEvent { publication: model.Publication; } export interface PublicationDisabledEvent { publication: model.Publication; } export interface PublicationEnabledEvent { publication: model.Publication; } export interface StreamSubscribedEvent { subscription: model.Subscription; } export interface StreamUnsubscribedEvent { subscription: model.Subscription; } //# sourceMappingURL=event.d.ts.map