import { EvmAddress } from '../addresses/index.js'; export declare class DstEscrowCreatedEvent { readonly escrow: EvmAddress; readonly hashlock: string; readonly taker: EvmAddress; static readonly TOPIC = "0xc30e111dcc74fddc2c3a4d98ffb97adec4485c0a687946bf5b22c2a99c7ff96d"; constructor(escrow: EvmAddress, hashlock: string, taker: EvmAddress); /** * @throws Error if the log data is invalid */ static fromData(data: string): DstEscrowCreatedEvent; }