import { ILogger } from './Logger.js'; import { Workspace } from '../workspaces/index.js'; export declare class FileLogger implements ILogger { private readonly _filePath; private readonly _workspace; private constructor(); static create(filePath: string, workspace: Workspace): Promise; info(info: string): Promise; notice(msg: string): Promise; success(msg: string): Promise; warning(msg: string): Promise; error(msg: string): Promise; }