import type { FastifyPluginCallback } from 'fastify';
import { type HealthCheck } from './commonHealthcheckPlugin.js';
export interface StartupHealthcheckPluginOptions {
    resultsLogLevel?: 'fatal' | 'error' | 'warn' | 'info' | 'debug' | 'trace' | 'silent';
    healthChecks: readonly HealthCheck[];
}
export declare const startupHealthcheckPlugin: FastifyPluginCallback<StartupHealthcheckPluginOptions>;
