import { Collaborator } from '../Collaborator';
import { IEventNotification } from '../IEventNotification';
export interface IDocumentCollaborationEvent extends IEventNotification {
    Collaborators: Collaborator[];
    BoaSyncStatus: string;
}
