import type { Adapter } from "./index.js"; /** * Bun adapter for nix-js-kit. * * Produces a self-contained Bun server entry at `.nix-js/bun-server.ts`. * Run it with: * * bun run .nix-js/bun-server.ts * * The server serves static files from `dist/` and renders pages on demand for * unmatched routes. */ export declare const bunAdapter: Adapter;