import { Rpc } from '../rpc'; import { RpcShellNavigate, RpcShellNavigateResult } from './rpc-shell-navigate-model'; export declare class RpcShellNavigateClient { /** * The shell navigate command. * * @param data the shell naviage object. * @return Promise the promise object of shell navigate result. */ static shellNavigate(rpc: Rpc, data: RpcShellNavigate): Promise; }