import { FastifyInstance } from "fastify"; //#region src/routes/dictionary.routes.d.ts declare const getDictionaryRoutes: () => { getDictionaries: { urlModel: string; url: string; method: "GET"; }; writeContentDeclaration: { urlModel: string; url: string; method: "POST"; }; }; declare const dictionaryRouter: (fastify: FastifyInstance) => Promise; //#endregion export { dictionaryRouter, getDictionaryRoutes }; //# sourceMappingURL=dictionary.routes.d.ts.map