import { type ImportmapDeclaration, type RoutesDeclaration } from '../utils'; export interface DevelopArgs { port: number; host: string; backend: string; open: boolean; importmap: ImportmapDeclaration; routes: RoutesDeclaration; watchedRoutesPaths: Record; spaPath: string; apiUrl: string; configUrls: Array; configFiles: Array; addCookie: string; supportOffline: boolean; } export declare function runDevelop(args: DevelopArgs, signal?: AbortSignal): Promise; //# sourceMappingURL=develop.d.ts.map