import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when the intent expires before all required signatures are collected. * Signature with this reason is added to intent by a background job which periodically * checks intents and aborts all which are still pending after predefined timeout. */ export declare class CoreIntentExpired extends LedgerError { /** * * @param detail error detail - message * @param custom custom data record to attach * additional info about the error */ constructor(detail: string, custom?: LedgerCustom); static REASON: LedgerErrorReason; }