import type { Log } from './logging/logger.ts';
export * from './logging/colors.ts';
export * from './logging/github.ts';
export * from './logging/levels.ts';
export * from './logging/logger.ts';
export * from './logging/options.ts';
export * from './logging/report.ts';
/** The generic, shared `log` function type. */
export type LogFunction = ((...args: [any, ...any]) => void) & Log;
/** Our logging function (defaulting to the `NOTICE` level) */
export declare const log: LogFunction;
/** Print a nice _banner_ message on the log */
export declare function banner(message: string): void;
//# sourceMappingURL=logging.d.ts.map