import type { Tab, ExecOptions } from '@kui-shell/core'; import Options from './options'; export { main } from './server'; export { getSessionForTab } from './sessionCache'; export { StdioChannelWebsocketSide } from './stdio-channel'; export declare const doExec: (tab: Tab, cmdline: string, argvNoOptions: string[], parsedOptions: Options, execOptions: ExecOptions) => Promise;