import { CommandResult } from './command-result'; import { Command } from './Command'; export declare class Goto extends Command { shortCommand: string; fullCommand: string; helpText: string; protected minArguments: number; protected maxArguments: number; isAvailableInCurrentContext(): boolean; doExecute(args: string | null, chained: boolean): Promise; private attemptGotoLinkNumber(itemNo, links); private openCollection(collection); }