import { Command } from 'commander'; interface LogsOptions { lines?: string; follow?: boolean; timestamps?: boolean; } export declare const logsCommand: ReturnType; export declare function runLogsCommand(groupName: string | undefined, processName: string | undefined, options: LogsOptions): void; declare function createLogsCommand(): Command; export {};