import { Logger } from "@atomist/skill-logging"; export declare function wrapAuditLogger(context: { eventId?: string; correlationId: string; workspaceId: string; }, labels?: Record): Logger & { url: string; }; /** * Print the debug level message to stdout * * @param message The message to print * @param optionalParams Optional params to pass to the logger */ export declare function debug(message: string, ...optionalParams: any[]): void; /** * Print the info level message to stdout * * @param message The message to print * @param optionalParams Optional params to pass to the logger */ export declare function info(message: string, ...optionalParams: any[]): void; /** * Print the warn level message to stdout * * @param message The message to print * @param optionalParams Optional params to pass to the logger */ export declare function warn(message: string, ...optionalParams: any[]): void; /** * Print the error level message to stdout * * @param message The message to print * @param optionalParams Optional params to pass to the logger */ export declare function error(message: string, ...optionalParams: any[]): void; //# sourceMappingURL=log.d.ts.map