export declare enum EEmailTemplate {
    EXCEPTION_NOTIFY = "exception-notify",
    NEW_MESSAGE = "new-message"
}
export declare type EmailTemplateData = {
    [EEmailTemplate.EXCEPTION_NOTIFY]: {
        namespace: string;
        exceptionType: string;
        stackString: string;
    };
    [EEmailTemplate.NEW_MESSAGE]: {
        ticketName: string;
        message: string;
    };
};
