import type { Adapter } from "./index.js"; /** * Netlify adapter for nix-js-kit. * * Produces the files expected by Netlify Functions v2: * - `netlify/functions/__nix-js-kit.mjs` — bundled SSR function. * - `netlify.toml` — redirects unmatched routes to the function. * * Run this after `nix-js-kit build`. The static files are left in `dist/` and * served directly by Netlify; the function only handles routes that have no * matching static file. */ export declare const netlifyAdapter: Adapter;