import { Router } from "express"; import type { RelayRegistry } from "./registry.js"; interface HealthRouterOptions { proxyTokenRequired?: boolean; clientTokenRequired?: boolean; validateClientToken?: (token: string | null) => boolean; validateProxyToken?: (token: string | null) => boolean; getClientToken?: () => string | null; } export declare function healthRouter(registry: RelayRegistry, options?: HealthRouterOptions): Router; export {}; //# sourceMappingURL=health.d.ts.map