import type { Ref } from 'vue'; import type { Doc } from 'yjs'; export interface CollaborationContextType { clientID: number; color: string; isCollabActive: boolean; name: string; yjsDocMap: Map; } export declare const collaborationContext: Ref;