/** Deploys an app from a Git repository as a systemd --user service. Copyright ⓒ 2021-present, Aral Balkan Small Technology Foundation License: AGPL version 3.0. */ import type { DeploymentOptions } from '../cli/index.ts'; type DeployOptions = DeploymentOptions & { progress?: (message: string) => void; context?: 'cli' | 'web'; 'is-being-deployed-by-domain'?: boolean; }; /** @param gitHttpsCloneUrl git clone url (HTTPS) */ export default function deploy(gitHttpsCloneUrl: string, options: DeployOptions): Promise; export {};