export interface PortInfo { serviceName: string; pid: number; port: number; address: string; protocol: string; isChildProcess: boolean; } export interface ListPortsOutput { ports: PortInfo[]; } export declare function handleListPorts(options?: { showAll?: boolean; commandNames?: string[]; }): Promise; export declare function printListPortsOutput(output: ListPortsOutput): void; //# sourceMappingURL=list-ports-command.d.ts.map