#!/usr/bin/env node import type { CliResult, CommandContext } from './types.js'; export declare const packageVersion: string; export declare const usage: string; export declare function createCommandContext(): CommandContext; export declare function runCli(argv: readonly string[], context?: CommandContext): Promise; export declare function main(argv?: readonly string[]): Promise;