//#region src/config-rendering.d.ts /** * Given a list of dependency names (from package.json), returns the * `@stackframe/*` package that should be used for the `StackConfig` import, * or `undefined` if none of the known packages are installed. */ declare function detectStackframeImportPackage(dependencies: string[]): string | undefined; /** * Walks up from `dir` to find the nearest `package.json` and returns the * best `@stackframe/*` package to use for the `StackConfig` type import. */ declare function detectImportPackageFromDir(dir: string): string | undefined; declare function renderConfigFileContent(config: unknown, importPackage?: string): string; //#endregion export { detectImportPackageFromDir, detectStackframeImportPackage, renderConfigFileContent }; //# sourceMappingURL=config-rendering.d.ts.map