/** * Argument parsers for the hand-authored, server-facing noun-verb commands: * `server`, `workflow`, `tail`, and `completions`. Each returns a typed * {@link CliCommand} variant consumed by `cli-main.ts`. * * @module cli/noun-verb-arguments */ import type { CliCommand } from './types.ts'; /** Parse `weft server health|info`. */ export declare function parseServerArguments(args: string[]): CliCommand; export declare function parseWorkflowArguments(args: string[]): CliCommand; /** Parse `weft tail [workflow-id]`. */ export declare function parseTailArguments(args: string[]): CliCommand; /** Parse `weft completions generate|install --shell `. */ export declare function parseCompletionsArguments(args: string[]): CliCommand;