#!/usr/bin/env node import type { FormatterType } from "./formatters/types.js"; import type { CLIHandler, CLIHandlerOptions } from "./types/cli.js"; export type CLIArgs = { port: number; debug: boolean; help: boolean; format: FormatterType; cmd: string | undefined; cmdArgs: string[]; }; export declare function parseCLIArgs(): CLIArgs; export declare const CLI_CMD_MAP: Map; export declare function main({ basePath, filesToServe, }?: { basePath?: CLIHandlerOptions["basePath"]; filesToServe?: CLIHandlerOptions["filesToServe"]; }): Promise;