import type { WrapperDef } from "./types.js"; /** * Build the full request (absolute URL + query) for a flat wrapper without * fetching. Exported so the param resolution is unit-testable without network. * * @throws if a `{token}` in the path can't be resolved (no param, no default). */ export declare function resolveFlat(def: WrapperDef, params?: Record): { url: string; query: Record; }; //# sourceMappingURL=flat.d.ts.map