import { FC } from "react"; import { ParsedPort } from "./types.js"; interface InternalConnectionHintsProps { ports: ParsedPort[]; containerName: string; } /** * InternalConnectionHints displays instructions for connecting to the container * from within the hosting environment using the service name as hostname. */ export declare const InternalConnectionHints: FC; export {};