import { AutoloadPluginOptions } from '@fastify/autoload'; import { FastifyPluginAsync } from 'fastify'; export type AppOptions = {} & Partial; declare const options: AppOptions; declare module 'fastify' { interface FastifyInstance { image_store: string; } } declare const app: FastifyPluginAsync; export default app; export { app, options };