import React from 'react'; import { Argv, Arguments } from 'yargs'; import * as t from 'io-ts'; export declare const Command: t.TypeC<{ builder: t.FunctionC; cmd: t.StringC; describe: t.StringC; View: t.FunctionC; }>; export declare type Command = Omit, 'builder' | 'View'> & { builder: (yargs: Argv) => Argv; View: React.ComponentType<{ args: Arguments; rc: unknown; cwd: string; }>; };