export declare namespace type_util {
    function algoFormat(data: any): any;
    function taskFormat(data: {
        id: string;
        name: string;
        params: string;
        start_time: string;
        end_time: string;
        "compute_cost(s)": string;
        "write_cost(s)": string;
        status: string;
        result: string;
        taskJson?: any;
    }): any;
}
