export type HealthCheckFunc = (address: string, AbortError: any) => Promise; export type HealthCheck = false | undefined | string | HealthCheckFunc; export declare function runHealthCheck({ address, health, maxRetries, tcpCheckOnly, fiveHundedStatusIsOk, }: { address: string; health: HealthCheck; maxRetries: number; tcpCheckOnly: boolean; fiveHundedStatusIsOk: boolean; }): Promise; //# sourceMappingURL=health-check.d.ts.map