import { AutomationsEventType } from "./enums";
export declare class AutomationsEvent {
    type: AutomationsEventType;
    date: number;
    constructor(type: AutomationsEventType, date: number);
}
