import { MittwaldAPIV2, MittwaldAPIV2Client } from "@mittwald/api-client"; import { ProcessRenderer } from "../../../rendering/process/process.js"; import { SystemSoftwareUpdateMap } from "./dependencies.js"; type AppAppInstallation = MittwaldAPIV2.Components.Schemas.AppAppInstallation; type AppAppVersion = MittwaldAPIV2.Components.Schemas.AppAppVersion; export declare function triggerAppInstallation(apiClient: MittwaldAPIV2Client, process: ProcessRenderer, projectId: string, flags: { "site-title": string; "document-root"?: string; "install-path"?: string; } & { [k: string]: unknown; }, appVersion: AppAppVersion, systemSoftware?: SystemSoftwareUpdateMap): Promise; export {};