import { getValidatedArgs } from './get-validated-args'; export type CliCommand = (args: ReturnType) => void; export declare const commands: { [command: string]: () => Promise; };