import type { IEvent } from './interfaces/IEvent.ts'; /** * Get text description of an event for logging purposes */ export declare function describe(event: IEvent): string; /** * Get text description of a set of events for logging purposes */ export declare function describeMultiple(events: ReadonlyArray): string;