import type { AdminAssetServer } from "@aotter/mantle-admin"; /** * `AdminAssetServer` implementation wrapping Cloudflare's `ASSETS` binding (a * `Fetcher` that serves the worker's bundled static assets). Returns * the asset Response, or `null` when the asset is not found so the * Admin HTTP layer can fall back to the SPA's `index.html` * catchall (React Router model). */ export declare class AssetsAssetServer implements AdminAssetServer { private readonly assets; constructor(assets: Fetcher); fetch(req: Request): Promise; } //# sourceMappingURL=AssetsAssetServer.d.ts.map