export declare class Logger {
    private static taskLevel;
    private static readonly INDENT_SIZE;
    static get loggingLevel(): number;
    private static getCurrentIndent;
    static error(message: string, err: unknown, exit?: boolean): void;
    static warn(message: string): void;
    static info(message: string): void;
    static debug(message: string): void;
    static start(message: string): void;
    static end(): void;
    static stripAnsi(str: string): string;
    static printTable(data: Record<string, string>[], withHeader: boolean, title: string): void;
}
