import { startAppSurface as realStartAppSurface, type AppSessionState } from "./appSurface.js"; import { startBackgroundProcessSurface as realStartBackgroundProcessSurface } from "./processSurface.js"; import { type ActiveSurfaceTracker } from "./activeSurface.js"; export { startSurfaceStep }; declare function startSurfaceStep({ config, step, platform, driver, processRegistry, appSession, surfaceTracker, serverDeps, deps, }: { config: any; step: any; platform: string; driver?: any; processRegistry?: Map; appSession?: AppSessionState; surfaceTracker?: ActiveSurfaceTracker; serverDeps?: any; deps?: { startAppSurface?: typeof realStartAppSurface; startBackgroundProcessSurface?: typeof realStartBackgroundProcessSurface; }; }): Promise; //# sourceMappingURL=startSurface.d.ts.map