import { FC } from "react"; import type { MittwaldAPIV2 } from "@mittwald/api-client"; type AppInstallation = MittwaldAPIV2.Components.Schemas.AppAppInstallation; type AppVersion = MittwaldAPIV2.Components.Schemas.AppAppVersion; interface AppUsageHintsProps { appInstallation: AppInstallation; appVersion: AppVersion; appName: string; appHost?: string; } /** * AppUsageHints displays comprehensive usage instructions for app * installations, including domain connection setup and backend access * information. */ declare const AppUsageHints: FC; export default AppUsageHints;