export declare const BackgroundExecutionEventType: {
    ProcessStarting: string;
    DataValidationError: string;
    ExecutionSuccessfullyComplete: string;
    ExecutionFailedError: string;
    NoMatchProcessorName: string;
};
export type BackgroundExecutionEventType = (typeof BackgroundExecutionEventType)[keyof typeof BackgroundExecutionEventType];
