import type { NormalizedConfig } from "../../core/config.js"; interface LoggerLike { log: (message: string) => void; warn: (message: string) => void; } interface ForgeProxyAutomationOptions { enabled: boolean; mode: "dev" | "start"; config: NormalizedConfig; cwd?: string; logger?: LoggerLike; } export interface ForgeProxyAutomation { enabled: boolean; adminUrl: string | null; listenUrl: string | null; routesDir: string | null; cleanup: () => Promise; } export declare function setupForgeProxyAutomation(options: ForgeProxyAutomationOptions): Promise; export {}; //# sourceMappingURL=forgeproxy.d.ts.map