import type { JsonObject } from '../being/index.ts'; import { type Defaults, type RootRequest } from '../harbor/index.ts'; export declare const parse: (argv: string[]) => { command?: string; words: string[]; flags: Record; }; export declare const requestOf: (command: string, words: string[], flags: Record) => RootRequest; export declare const main: (argv: string[], env: Record, print: (line: string) => void, defaults: Defaults) => Promise; export declare const pilotRequests: (name: string, invitation: JsonObject, at?: string, web?: RootRequest) => RootRequest[]; export declare const via: (name: string, far: RootRequest) => RootRequest; export declare const farAnswer: (local: JsonObject) => JsonObject; export declare const SERVING = -1;