import { Awareness } from 'y-protocols/awareness'; import { SocketClient } from '../socketClient'; export declare const createAwarenessUpdateHandler: (awareness: Awareness, socketClient: SocketClient, roomKey: string) => ({ added, updated, removed, }: { added: number[]; updated: number[]; removed: number[]; }, origin: any) => void;