import { FC } from "react"; import { MittwaldAPIV2 } from "@mittwald/api-client"; type AppAppInstallation = MittwaldAPIV2.Components.Schemas.AppAppInstallation; /** * Component to display the virtual hosts linked to an app installation. There * is no specific API endpoint to fetch this information, so we have to fetch * all virtual hosts and filter them by the installation ID. * * @class * @param appInstallation */ export declare const AppVirtualHosts: FC<{ appInstallation: AppAppInstallation; }>; export {};