import type { FastifyInstance } from 'fastify'; export interface DrainState { readonly inFlight: () => number; readonly waitForDrain: (timeoutMs: number) => Promise; } export declare function setupDrain(app: FastifyInstance): DrainState; //# sourceMappingURL=drain.d.ts.map