import { Connection } from '../../connection'; import { LogcatReader } from '../../logcat/reader'; import { LogcatOptions } from '../../util'; import TransportCommand from '../abstract/transport'; export default class LogcatCommand extends TransportCommand { private options; protected Cmd: string; protected keepAlive: boolean; constructor(connection: Connection, serial: string, options: LogcatOptions | void); protected postExecute(): Promise; }