import { FC } from "react"; import { ParsedPort } from "./types.js"; interface PortConnectionHintsProps { ports: ParsedPort[]; containerId: string; containerName: string; } /** * PortConnectionHints orchestrates the display of internal, domain connection, * and port forwarding options for containers with exposed ports. */ export declare const PortConnectionHints: FC; export {};