export interface LoggerOutput { info(message: string): void; success(message: string): void; warn(message: string): void; error(message: string): void; resolved(label: string, value: string): void; errorResolved(label: string, value: string): void; message(message: string, symbol?: string): void; } export declare function createLogger(emitter?: (message: string) => void): LoggerOutput; export declare const logger: LoggerOutput;