import type { FastifyPluginCallback, FastifyPluginOptions, LogLevel, RouteHandler } from 'fastify';
interface Opts extends FastifyPluginOptions {
    message?: string;
    readinessURL?: string;
    livenessURL?: string;
    readinessCallback?: RouteHandler;
    livenessCallback?: RouteHandler;
    logLevel: LogLevel;
}
declare const arecibo: FastifyPluginCallback<Opts>;
export = arecibo;
