import type { EmailEvent } from "./types.js"; /** * Parse an AWS SES webhook payload (SNS envelope) into normalized {@link EmailEvent} records. * Handles SubscriptionConfirmation (returns `[]`) and double-encoded Notification messages. */ export declare function parse(payload: unknown): EmailEvent[];