import BigNumber from "bignumber.js"; import EventLog from "./EventLog"; export default class EventNotification { readonly hash: string; readonly height: BigNumber; readonly index: BigNumber; readonly events: BigNumber[]; readonly logs: EventLog[]; constructor(data: any); }