export declare class ProcessUtil {
    static ErrorExitCode: number;
    static SuccessExitCode: number;
    static terminate(params: {
        success: boolean;
        message?: string;
    }): void;
}
