import { Argv } from 'yargs';

interface ArgvParsed {
    _?: string[];
    $0: string;
    value?: string[];
    entry?: string[];
    write?: boolean;
    depth?: boolean;
    run?: string;
}
declare function registerLnvCommand(cli: Argv): Promise<void>;

export { type ArgvParsed, registerLnvCommand };
