declare class Shell { one: (cmd: any, args: any, { cwd, shell, ...other }?: { cwd?: any; shell?: boolean; }) => Promise; tail: (cmd: any, args: any, { cwd, shell, ...other }?: { cwd?: any; shell?: boolean; }) => Promise; } declare const instance: Shell; export default instance;