import type { EventId } from "./EventId.js"; export interface EventIdFactoryOptions { after?: EventId; now?: () => number; } export declare function createEventIdFactory(options?: EventIdFactoryOptions): () => EventId; export declare function eventIdsShareScope(left: string, right: string): boolean;