import { WyreErrorType } from './WyreErrorType'; export declare class WyreError { language: string; exceptionId: string; errorCode: string; compositeType: string; subType: string; message: string; type: WyreErrorType; typeAsString?: string; transient: boolean; } export declare function isWyreError(error: any): boolean;