import type { RuntimeAdapter } from "../platform/adapters/base.js"; /** Minimal config interface to avoid importing from config layer */ interface BundleManifestConfig { cache?: { bundleManifest?: { enabled?: boolean; type?: string; redisUrl?: string; keyPrefix?: string; ttl?: number; }; }; } export declare function initializeBundleManifest(config: BundleManifestConfig, mode: "development" | "production", adapter?: RuntimeAdapter): Promise; export declare function getBundleManifestTTL(config: BundleManifestConfig, mode: "development" | "production"): number | undefined; export {}; //# sourceMappingURL=bundle-manifest-init.d.ts.map