export declare const handlerIdProperty: unique symbol;
export interface HandlerWithId {
    readonly [handlerIdProperty]: string;
}
export declare function isHandlerWithId(handler: object): handler is HandlerWithId;
