import { FC } from "react"; interface ContainerManagementCommandsProps { containerIdentifier: string; } /** * ContainerManagementCommands is a React functional component that provides * commands and instructions for interacting with a specific container. * * This component displays a set of command hints, allowing users to: * * - Connect to a container via SSH. * - View logs generated by the container. * - Execute specific commands within the container. * * The displayed commands are dynamically generated based on the * `containerIdentifier` prop, which identifies the container to manage. * * @property string ContainerIdentifier - The unique identifier of the container * to manage. This is included in the commands displayed by the component. */ export declare const ContainerManagementCommands: FC; export {};