import { Transport } from "./proxy.js"; //#region src/challenge.d.ts interface ProbeFailure { reason: "unreachable" | "status" | "incomplete" | "mismatch"; status?: number; error: string; } declare const verifyChallenge: (fetchImpl: Transport.FetchLike, advertiseUrl: string, secret: string, challenge: string, challengeValue: string, timeoutMs: number) => Promise; //#endregion export { ProbeFailure, verifyChallenge }; //# sourceMappingURL=challenge.d.ts.map