declare class TransportError extends Error { readonly code: number; readonly body: any; readonly status: string; readonly headers: any; constructor(message: string, code: number, body: any, status: string, headers: any); } export { TransportError };