export declare function printLogo(): void; export declare function bold(input: string | number): string; export declare function red(input: string | number): string; export declare function green(input: string | number): string; export declare function formatSHA(sha: string): string; export declare function formatPath(path: string, rootPath: string): string; export declare function formatLink(link: string): string; declare class Logger { log(...args: any[]): void; debug(...args: any[]): void; error(...args: any[]): void; critical(...args: any[]): void; } export declare const logger: Logger; export {};