import type { FastifyReply, FastifyRequest } from "fastify"; import type { FilesApi } from "../api/index.js"; export type FastifyRouteHandler = (request: FastifyRequest, reply: FastifyReply) => Promise; export declare const createRouteHandler: (router: FilesApi) => FastifyRouteHandler; //# sourceMappingURL=index.d.ts.map