export interface ReservePortOptions { projectDir: string; serviceName?: string; } export interface ReservePortOutput { port: number; projectDir: string; serviceName?: string; } export declare function handleReservePort(options: ReservePortOptions): Promise; export declare function printReservePortOutput(output: ReservePortOutput): void; //# sourceMappingURL=reserve-port-command.d.ts.map