declare function convertBase(
    num: number | string,
    from: number,
    to: number
): string;

export = convertBase;
