import type { Context } 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: Context, release: string): Logger;
