import { type FastifyError, type FastifyInstance, type FastifyPluginOptions, type RouteOptions } from 'fastify';
declare module 'fastify' {
    interface FastifyInstance {
        routes: RouteOptions[];
    }
}
export declare const plugin: (instance: FastifyInstance, options: FastifyPluginOptions, done: (error?: FastifyError) => void) => void;
export default plugin;
