export type CliArgs = { command: string; rest: string[]; raw: boolean; all: boolean; tail: number | null; from: string | null; /** Every `--from` value, in order. `from` is the last one (run-once). */ froms: string[]; /** `--to` — send-as recipient (name or id). */ to: string | null; /** `--bus` — existing send-as bus seat (name or id). */ bus: string | null; name: string | null; purpose: string | null; timeoutMs: number | null; keepOnFailure: boolean; keepBus: boolean; noReply: boolean; }; export declare function parseCliArgs(argv: string[]): CliArgs; export declare function cliUsage(): string; //# sourceMappingURL=cli-parse.d.ts.map