import { FastifyPluginAsync } from "fastify"; type FastifyExampleAsync = FastifyPluginAsync; declare namespace fastifyExampleAsync { export interface FastifyExampleAsyncOptions { foo?: 'bar' } export interface FastifyExampleAsyncPluginOptions extends FastifyExampleAsyncOptions { } export const fastifyExampleAsync: FastifyExampleAsync export { fastifyExampleAsync as default } } declare function fastifyExampleAsync(...params: Parameters): ReturnType export default fastifyExampleAsync