/** * Minimal mock CommonGrants API server for running examples without the FastAPI template. * * Serves GET/POST routes that match the SDK client. Start with: * pnpm example:server * * Then run any example (get, list, search, get-custom-fields) against http://localhost:8000. * * The search route understands `filters`: it applies the standard `status` * filter, and echoes every received filter (including `customFilters`) back in * `filterInfo.filters`, so examples can show that registered and ad-hoc custom * filters reached the server. Import `createMockServer()` to run it in-process. */ import { type Server } from "http"; /** Builds the mock server without starting it, so examples can run it in-process. */ export declare function createMockServer(): Server; //# sourceMappingURL=mock-api-server.d.ts.map