export declare class EventManagerError extends Error {
    name: string;
    cause?: Error;
    constructor(message?: string, cause?: Error);
}
