import React from "react";
import { RequestInfo } from "../requestInfo/types";
export declare const HealthCheckInfo: React.FC;
/**
 * Wrapper component that displays health check info above the original page content
 */
export declare const HealthCheckWrapper: React.FC<{
    children: React.ReactNode;
}>;
/**
 * Standalone health check page that conforms to the RouteComponent type
 */
export declare const HealthCheckPage: (requestInfo: RequestInfo) => React.JSX.Element;
