export declare class ScopeDisplayService { /** * Format list of applications for display. * Returns lines for console output, or JSON string if jsonOutput is true. */ formatAppList(apps: any[], jsonOutput: boolean): string[]; /** * Format current application for display. * Returns lines for console output, or JSON string if jsonOutput is true. */ formatCurrentApp(app: any, jsonOutput: boolean): string[]; /** * Format set application result for display. * Returns lines for console output, or JSON string if jsonOutput is true. */ formatSetResult(result: any, jsonOutput: boolean): string[]; } //# sourceMappingURL=scope-display.service.d.ts.map