/**
* An error or inconsistency in the intermediary's returned data, this will blacklist the intermediary
*/exportdeclareclassIntermediaryErrorextendsError {
recoverable: boolean;
originalStack?: string;
constructor(msg: string, originalError?: any, recoverable?: boolean);
}