#!/usr/bin/env node
import { Command } from "@commander-js/extra-typings";
declare const program: Command<[], {
    debug?: true | undefined;
}, {}>;
export type Program = typeof program;
export {};
