export interface GetOrReservePortOptions { projectDir: string; serviceName: string; } export interface GetOrReservePortOutput { port: number; serviceName: string; projectDir: string; wasReserved: boolean; } export declare function handleGetOrReservePort(options: GetOrReservePortOptions): Promise; export declare function printGetOrReservePortOutput(output: GetOrReservePortOutput): void; //# sourceMappingURL=get-or-reserve-port-command.d.ts.map