import { StructType } from '@terradharitri/sdk-core'; import { RawEventType } from '../generic.types'; import { RawEvent } from '../raw.event'; import { PriceDiscoveryEventTopics } from './price.discovery.event.topics'; import { PriceDiscoveryEventType } from './price.discovery.types'; export declare class PriceDiscoveryEvent extends RawEvent { private decodedTopics; constructor(init: RawEventType); getAddress(): string | undefined; getIdentifier(): string | undefined; getTopics(): PriceDiscoveryEventTopics; toJSON(): PriceDiscoveryEventType; protected decodeEvent(): any; protected getStructure(): StructType; }