import { BlockNumber, BlockTag } from 'viem';
export type NonPendingBlockTag = Exclude<BlockTag, 'pending'>;
export type EventRangeProps = {
    step?: number;
    fromBlock?: BlockNumber | NonPendingBlockTag;
    toBlock?: BlockNumber | NonPendingBlockTag;
    maxBlocksDepth?: bigint;
};
export type OperatorCurveIdChange = {
    curveId: bigint;
    blockNumber: bigint;
};
//# sourceMappingURL=types.d.ts.map