/** Kitten command-line interface (CLI): serve command. Copyright ⓒ 2021-present, Aral Balkan Small Technology Foundation License: AGPL version 3.0. */ import type { ServerOptions } from '../index.ts'; /** Start Kitten server instance. */ export default function serve(pathToServe: string | undefined, options: ServerOptions): Promise;