import { Code as CommonErrorCode } from '@superblocksteam/types'; interface IntegrationInternalError { code?: number | string; pluginName?: string; stack?: string; } export declare class IntegrationError extends Error { code: CommonErrorCode; internalCode: IntegrationInternalError; constructor(message: string, errorCode?: CommonErrorCode, internalCode?: IntegrationInternalError); } export {}; //# sourceMappingURL=integration.d.ts.map