import { RawEventType } from './generic.types'; export declare class RawEvent { address: string | undefined; identifier: string | undefined; name: string | undefined; topics: string[]; data: string | undefined; constructor(init: RawEventType); private isTransactionEvent; }