/** Kitten command-line interface (CLI): run command. Clones an app from a Git repository and runs it locally. Copyright ⓒ 2024-present, Aral Balkan Small Technology Foundation License: AGPL version 3.0. */ import type { ServerOptions } from '../index.ts'; /** @param gitHttpsCloneUrl git clone url (HTTPS) */ export default function run(gitHttpsCloneUrl: string, options: ServerOptions): Promise;