export declare const ERROR_LOG_FILE: string;
interface LogErrorParams {
    command: string;
    breadcrumbs: string[];
    error: unknown;
}
export declare function initLogger(command: string): Promise<void>;
export declare function logError({ command, breadcrumbs, error, }: LogErrorParams): Promise<void>;
export {};
