export declare const init: () => Promise; export declare const executeCommand: (command?: string) => Promise; type Options = { [option: string]: string; }; type CommandObject = { [command: string]: (options?: Options) => Promise; }; export declare const getCommands: (host?: string) => Promise; export {};