/** Kitten command-line interface (CLI): deploy command. 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 '../index.ts'; /** @param gitHttpsCloneUrl git clone url (HTTPS) */ export default function deploy(gitHttpsCloneUrl: string, options: DeploymentOptions): Promise;