import { NetEvent } from '../../node_modules/@btc-vision/transaction/build/index.js'; import { DecodedCallResult } from '../common/CommonTypes.js'; import { ContractDecodedObjectResult, DecodedOutput } from './types/ContractTypes.js'; export interface IDecodedEvent extends NetEvent { readonly values: Array; } export declare class OPNetEvent extends NetEvent implements IDecodedEvent { readonly type: string; readonly data: Uint8Array; properties: T; values: Array; constructor(type: string, data: Uint8Array); setDecoded(decoded: DecodedOutput): void; }