import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when too much time passed from initiation of intent to * receiving the entry which includes this intent. */ export declare class BridgeEntryTimeout 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; }