import type { BuildVerificationResultLinkOptions, OTPClassifiedVerificationError, OTPVerificationOutcome } from "../core/otp.types.js"; export declare function classifyVerificationError(error: unknown): OTPClassifiedVerificationError; export declare function getVerificationOutcome(input: { verified?: boolean; error?: unknown; }): OTPVerificationOutcome; export declare function buildVerificationResultLink(options: BuildVerificationResultLinkOptions): string;