import { LogParams } from 'ethers'; import { IMevShareEvent, IPendingBundle, IPendingTransaction } from './interfaces'; export declare class PendingTransaction implements IPendingTransaction { hash: string; logs?: LogParams[]; to?: string; functionSelector?: string; callData?: string; mevGasPrice?: bigint; gasUsed?: bigint; constructor(event: IMevShareEvent); } export declare class PendingBundle implements IPendingBundle { hash: string; logs?: LogParams[]; txs?: { to?: string; functionSelector?: string; callData?: string; }[]; mevGasPrice?: bigint; gasUsed?: bigint; constructor(event: IMevShareEvent); } //# sourceMappingURL=events.d.ts.map