import { IEventSource } from "./IEventSource.js";
import { PlatformEvent } from "./PlatformEvent.js";
export declare class Events {
    private static privInstance;
    static setEventSource(eventSource: IEventSource<PlatformEvent>): void;
    static get instance(): IEventSource<PlatformEvent>;
}
