import { type ServiceHost } from "../service-host.js"; import type { ScopeOptions } from "./command-options.js"; import type { CommandResult } from "./command-application.js"; export interface ManagerServiceLogsOptions extends ScopeOptions { follow?: boolean; lines?: number; } /** 只读系统托管日志;不加载旧生命周期控制器或业务配置,不创建任何目录。 */ export declare function managerServiceLogsCommand(options: ManagerServiceLogsOptions, host?: ServiceHost): Promise; //# sourceMappingURL=manager-service-logs-command.d.ts.map