import { Command } from 'commander'; import type { OutputFormat } from '../output/formatter'; type CliContext = { getFormat: (command: Command) => OutputFormat; print: (command: Command, data: unknown) => void; handleError: (error: unknown) => never; }; export declare function registerServerCommands(program: Command, context: CliContext): void; export {}; //# sourceMappingURL=server.d.ts.map