declare namespace CromarmotAlgoLib {
    type Complexity = "Best" | "Constant" | "LogN" | "N" | "NLogN" | "N2" | "N2LogN" | "N3" | "N4" | "NN" | "Random";
    type Funcs = string;
    type Fn = (...arg0: any[]) => any;
}
