#!/usr/bin/env node import { Command } from 'commander'; declare function runCommand(action: () => Promise): void; declare function createCliProgram(): Command; export { createCliProgram, runCommand };