import { Annotation, ChangeSet, Store } from '@annotorious/core'; import { BroadcastEvent } from './Types'; import { SupabaseAnnotation } from '../SupabaseAnnotation'; /** * Returns a list of unique IDs of annotations that are * affected the list of events. */ export declare const affectedAnnotations: (events: BroadcastEvent[]) => string[]; export declare const marshal: (changes: ChangeSet, store: Store, defaultLayerId: string, privacyMode: boolean, source?: string) => BroadcastEvent[]; export declare const apply: (store: Store, event: BroadcastEvent, source?: string) => void; //# sourceMappingURL=broadcastProtocol.d.ts.map