import { RequestError } from 'got';
import { Exception } from '@poppinss/utils';
/**
 * Exception raised when API calls to the transport service fails
 */
export declare class EmailTransportException extends Exception {
    response: any;
    static apiFailure(error: RequestError): EmailTransportException | RequestError;
}
