/**
 * The error is raised when the transport is unable to
 * send the email
 */
export declare const E_MAIL_TRANSPORT_ERROR: {
    new (message?: string, options?: ErrorOptions & {
        code?: string;
        status?: number;
    }): {
        name: string;
        help?: string;
        code?: string;
        status: number;
        toString(): string;
        readonly [Symbol.toStringTag]: string;
        message: string;
        stack?: string;
        cause?: unknown;
    };
    status: number;
    code: string;
    help?: string;
    message?: string;
    captureStackTrace(targetObject: object, constructorOpt?: Function): void;
    prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined;
    stackTraceLimit: number;
};
