import type { Server } from 'http'; import express from 'express'; import { FrameworkConfigComplete } from 'tungsten/FrameworkConfig.js'; export declare class StaticSiteServer { config: FrameworkConfigComplete; port: number; location?: string; app: express.Application; server?: Server; staticSiteLocation: string; constructor(config: FrameworkConfigComplete); start: () => Promise; stop: () => void; } //# sourceMappingURL=StaticSiteServer.d.ts.map