import * as probot from 'probot'; export interface Logger { log(msg: string): void; info(msg: string): void; warn(msg: string): void; error(msg: string | Error, error?: Error): void; } export declare function createLogger(label: string, context: probot.Context): Logger;