import { FastifyRequest, FastifyReply } from 'fastify'; import { ProxyService } from '../services/proxy.service.js'; interface ProxyQuery { data: string; } export declare class ProxyController { private proxyService; constructor(proxyService: ProxyService); /** * GET /v1/proxy */ proxy(request: FastifyRequest<{ Querystring: ProxyQuery; }>, reply: FastifyReply): Promise; } export {}; //# sourceMappingURL=proxy.controller.d.ts.map