import type { FastifyInstance } from 'fastify'; import type { GraphQLYogaOptions } from '@redwoodjs/graphql-server'; export interface RedwoodFastifyGraphQLOptions { redwood: { apiRootPath?: string; graphql?: GraphQLYogaOptions; }; } export declare function redwoodFastifyGraphQLServer(fastify: FastifyInstance, options: RedwoodFastifyGraphQLOptions): Promise; //# sourceMappingURL=graphql.d.ts.map