import type { Hex } from 'viem';
import { StandardMerkleTreeData } from '../common/index.js';
export type StrikesTreeLeaf = [bigint, Hex, bigint[]];
export type StrikesTree = StandardMerkleTreeData<StrikesTreeLeaf>;
export type KeyStrikes = number[];
export type KeyWithStrikes = {
    pubkey: Hex;
    strikes: KeyStrikes;
};
//# sourceMappingURL=types.d.ts.map