import type { RunningHappy2 } from "./backend.js"; import type { ServerConfig } from "./modules/config/type.js"; export interface StandaloneHappy2 extends RunningHappy2 { /** Private API origin for an embedding desktop renderer; the public SPA remains at `url`. */ backendUrl: string; } export interface StandaloneOptions { errorLogPath?: string; logger?: boolean; /** Explicit process-private local capability captured by an embedding host. */ localAccessToken?: string; webRoot?: string; } /** Starts the private API server and the public web/static reverse proxy. */ export declare function startStandaloneHappy2(config: ServerConfig, options?: StandaloneOptions): Promise; //# sourceMappingURL=standalone.d.ts.map