import { Effects, ResultType } from "./types.js"; export declare const checkWebUrl: (url: string) => (effects: Effects, duration: number) => Promise>; export declare const runHealthScript: ({ command, args }: { command: string; args: string[]; }) => (effects: Effects, _duration: number) => Promise>; export declare const guardDurationAboveMinimum: (input: { duration: number; minimumTime: number; }) => { "error-code": readonly [number, string]; } | null; export declare const catchError: (effects: Effects) => (e: unknown) => import("./types.js").KnownError;