import { FC } from "react"; import type { MittwaldAPIV2 } from "@mittwald/api-client"; type ContainerServiceResponse = MittwaldAPIV2.Components.Schemas.ContainerServiceResponse; interface ContainerUsageHintsProps { service: ContainerServiceResponse; } /** * ContainerUsageHints displays comprehensive usage instructions for containers, * adapting the content based on whether the container exposes ports or not. */ declare const ContainerUsageHints: FC; export default ContainerUsageHints;