import { bytes32 } from "../wheel/python/sized_bytes";
import { Optional } from "../../chia/types/_python_types_";
import { uint64, uint8 } from "../wheel/python/sized_ints";
export type SubEpochSummary = {
    prev_subepoch_summary_hash: bytes32;
    reward_chain_hash: bytes32;
    num_blocks_overflow: uint8;
    new_difficulty: Optional<uint64>;
    new_sub_slot_iters: Optional<uint64>;
};
