export type livenessCheckResponse200 = { data: void; status: 200; }; export type livenessCheckResponseSuccess = (livenessCheckResponse200) & { headers: Headers; }; export type livenessCheckResponse = (livenessCheckResponseSuccess); export declare const getLivenessCheckUrl: () => string; export declare const livenessCheck: (options?: RequestInit) => Promise; export type readinessCheckResponse200 = { data: void; status: 200; }; export type readinessCheckResponse503 = { data: void; status: 503; }; export type readinessCheckResponseSuccess = (readinessCheckResponse200) & { headers: Headers; }; export type readinessCheckResponseError = (readinessCheckResponse503) & { headers: Headers; }; export type readinessCheckResponse = (readinessCheckResponseSuccess | readinessCheckResponseError); export declare const getReadinessCheckUrl: () => string; export declare const readinessCheck: (options?: RequestInit) => Promise; export type healthCheckResponse200 = { data: void; status: 200; }; export type healthCheckResponse503 = { data: void; status: 503; }; export type healthCheckResponseSuccess = (healthCheckResponse200) & { headers: Headers; }; export type healthCheckResponseError = (healthCheckResponse503) & { headers: Headers; }; export type healthCheckResponse = (healthCheckResponseSuccess | healthCheckResponseError); export declare const getHealthCheckUrl: () => string; export declare const healthCheck: (options?: RequestInit) => Promise; //# sourceMappingURL=health.d.ts.map