import { ESPStandardizedError } from "../../types/error.type.js";
/**
 * Resend API error codes — the `name` field returned by Resend in the body
 * on non-2xx responses. Reference: https://resend.com/docs/api-reference/errors
 *
 * Resend renvoie toujours un JSON du type `{ statusCode, name, message }`
 * où `name` est un slug snake_case (ex: `validation_error`, `invalid_api_key`).
 */
export declare const errorCode: {
    [key: string]: ESPStandardizedError;
};
