type Color = "Red" | "Green" | "Yellow" | "Blue" | "Magenta" | "Cyan" | "White";
declare const Logger: {
    disabled: boolean;
    log(msg: string, color?: Color): void;
    error(msg: string): void;
    warn(msg: string): void;
    succ(msg: string): void;
    /**
     * Renders a progress bar to stdout.
     * @param current Current progress value.
     * @param total Total value.
     * @param sameLine Overwrite the current line instead of printing a new one.
     */
    nodeProgress(current: number, total: number, sameLine?: boolean): void;
};

export { type Color, Logger };
