import type { FastifyContext } from "apollo-server-fastify";
import type { Issue } from "../../types/types";
declare const downloadToExcel: (_req: FastifyContext["request"], res: FastifyContext["reply"], data: Issue | any) => Promise<void>;
export { downloadToExcel };