export declare function shouldUseColors(): boolean; export interface LoggerOptions { colors?: boolean; quiet?: boolean; verbose?: boolean; } export declare class Logger { private colors; private quiet; private verbose; constructor(colors?: boolean, options?: Omit); header(message: string): void; info(message: string): void; success(message: string): void; warn(message: string): void; error(message: string, error?: Error): void; debug(message: string): void; log(message: string): void; line(): void; } //# sourceMappingURL=logger.d.ts.map