import { FC } from "react"; import type { MittwaldAPIV2 } from "@mittwald/api-client"; type AppInstallation = MittwaldAPIV2.Components.Schemas.AppAppInstallation; interface AppManagementCommandsProps { appInstallation: AppInstallation; } /** * AppManagementCommands displays management commands for app installations * including SSH access, file operations, and maintenance tasks. */ export declare const AppManagementCommands: FC; export {};