import { Message } from "../../abstractions/message";
import { BaseData, IIntegrationEvent } from "../../utils/types";
export declare namespace plannerIntegrationEvent {
    class ReleaseUpdated extends Message implements IIntegrationEvent {
        ReleaseId: string;
        Status: string;
        WorkflowType: string;
        WorkflowInstance: string;
        constructor(data: BaseData & {
            releaseId: string;
            status: string;
            workflowType: string;
            workflowInstance: string;
        });
    }
}
