import { ICanLog, LogLevel } from './index.mjs';
/**
 * A simple file logger that appends the text to a log file.
 */
export declare class FileLogger implements ICanLog {
    private file;
    constructor(file: string);
    log(_level: LogLevel, msg: string, callback?: (err: any, result: any) => void): void;
}
