export declare class Event {
    method: string;
    type: string;
    body: object;
    constructor(method: string, type: string, body: object);
}
