/** * useHealthCheck Hook * Health status checking (Folio service) */ import type { HealthStatus, UseHealthCheckOptions } from './types'; export declare const useHealthCheck: ({ interval, onError }?: UseHealthCheckOptions) => { health: HealthStatus; isLoading: boolean; error: Error; checkHealth: () => Promise; }; export type { UseHealthCheckOptions } from './types'; //# sourceMappingURL=useHealthCheck.d.ts.map