import type { HealthCheckDefinition, HealthScope } from "./core/types"; export interface HttpCheckOptions { scopes?: readonly HealthScope[]; method?: "GET" | "HEAD" | "POST"; headers?: HeadersInit; body?: BodyInit | null; expectedStatus?: number | readonly number[] | { min: number; max: number; }; validateBody?: (body: string, response: Response) => boolean | Promise; timeoutMs?: number; } export declare function httpCheck(name: string, url: string | URL, options?: HttpCheckOptions): HealthCheckDefinition; //# sourceMappingURL=http-check.d.ts.map