import { Command } from "@oclif/core";
export default class Monitor extends Command {
    static args: {};
    static description: string;
    static examples: string[];
    private logBuffer;
    run(): Promise<void>;
    private onTransportData;
}
