import type { Options as FastGlobOptions } from 'fast-glob'; import type { FastifyInstance } from 'fastify'; import type { Server } from '../createServerHelpers'; export interface RedwoodFastifyAPIOptions { redwood: { apiRootPath?: string; fastGlobOptions?: FastGlobOptions; discoverFunctionsGlob?: string | string[]; loadUserConfig?: boolean; configureServer?: (server: Server) => void | Promise; }; } export declare function redwoodFastifyAPI(fastify: FastifyInstance, opts: RedwoodFastifyAPIOptions): Promise; //# sourceMappingURL=api.d.ts.map