import type { EmailEvent } from "./types.js"; /** Parse a Resend webhook payload into normalized {@link EmailEvent} records. */ export declare function parse(payload: unknown): EmailEvent[]; /** * Verify a Resend webhook signature (Svix-style) using Web Crypto. * Returns false when verification cannot be performed or the signature is invalid. */ export declare function verifySignature(payload: string, headers: { "svix-id"?: string; "svix-timestamp"?: string; "svix-signature"?: string; }, secret: string): Promise;