/** * Config file patching utilities for scaffold commands. * These functions perform source-level transformations on forge config files. */ interface PatchResult { changed: boolean; reason: string; text: string; } export declare function findMatchingDelimiter(source: string, startIndex: number, openChar: string, closeChar: string): number; export declare function splitTopLevelArgs(source: string): string[]; export declare function ensureThreadforgeNamedImport(configText: string, symbol: string): PatchResult; export declare function appendOptionToObjectLiteral(optionsArg: string, key: string, optionBlock: string): PatchResult; export declare function addDefaultStaticSiteToConfig(configText: string): PatchResult; export declare function addReactFrontendToConfig(configText: string): PatchResult; export {}; //# sourceMappingURL=config-patcher.d.ts.map