import type { FastifyInstance } from "fastify"; declare module "fastify" { interface FastifyReply { toon(body: unknown): this; } } export declare function setupResponse(fastify: FastifyInstance): void;