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