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