import chalk from 'chalk'; export declare const orange: chalk.Chalk; export declare const white: any, red: any, yellow: any, green: any; export declare enum LogSeveritys { normal = 0, ok = 1, warning = 2, error = 3, none = 4 } export declare type LogSeverity = 'normal' | 'warning' | 'error' | 'none'; export declare const spinToken: Generator; export declare function startProgress(): void; export declare function stopProgress(): void; export declare const log: (...a: any[]) => void; export declare const logOk: (...a: any[]) => void; export declare const logError: (...a: any[]) => void; export declare const logWrite: (...a: any[]) => void; export declare const logWarn: (...a: any[]) => void; export declare function printProgress(tasks: number | boolean, text?: string, total?: number): void;