import type { BatchResult } from '../types';
export declare const logger: {
    info: (msg: string) => void;
    success: (msg: string) => void;
    warn: (msg: string) => void;
    error: (msg: string) => void;
    step: (msg: string) => void;
    file(icon: string, filePath: string, status: string): void;
    summary(result: BatchResult): void;
};
