import { PlatformStartShellOptions, PlatformStartModuleOptions } from '../types'; declare function startModule(options: PlatformStartModuleOptions): Promise; declare function startShell(options: PlatformStartShellOptions): Promise; export declare function setup(): { startModule: typeof startModule; startShell: typeof startShell; }; export {};