import { FC } from "react"; import type { MittwaldAPIV2 } from "@mittwald/api-client"; type AppInstallation = MittwaldAPIV2.Components.Schemas.AppAppInstallation; interface AppBackendAccessHintsProps { appInstallation: AppInstallation; backendPathTemplate: string; appName: string; appHost?: string; } /** * AppBackendAccessHints displays backend/admin access information when a * backendPathTemplate is available in the app version. */ export declare const AppBackendAccessHints: FC; export {};