import { Argv } from 'yargs'; interface ArgvParsed { _?: string[]; $0: string; value?: string[]; entry?: string[]; write?: boolean; depth?: boolean; run?: string; } declare function registerVltCommand(cli: Argv): Promise; export { type ArgvParsed, registerVltCommand };