import type { PickDeep } from 'type-fest'; import type { Chain, LogFilter } from './chain.ts'; import { type CCIPRequest, type CCIPVerifications } from './types.ts'; /** * Look for a CommitReport at dest for given CCIPRequest * Provides a basic/generic implementation, but subclasses of Chain may override with more specific * logic in Chain.getVerifications method * * @param dest - Destination network provider * @param offRamp - Commit store address * @param request - CCIP request info * @param hints - Additional filtering hints * @returns CCIP commit info **/ export declare function getOnchainCommitReport(dest: Chain, offRamp: string, { lane, message, tx: { timestamp: requestTimestamp }, }: PickDeep, hints?: Pick): Promise; //# sourceMappingURL=commits.d.ts.map