import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
import { bool, str } from "../../chia/types/_python_types_";
import { G1Element } from "../../chia_rs/chia-bls/lib";
import { uint64 } from "../../chia_rs/wheel/python/sized_ints";
import { CoinSpend } from "../../chia/types/coin_spend";
import { PoolState } from "../../chia/pools/pool_wallet_info";
export type FarmerRecord = {
    launcher_id: bytes32;
    p2_singleton_puzzle_hash: bytes32;
    delay_time: uint64;
    delay_puzzle_hash: bytes32;
    authentication_public_key: G1Element;
    singleton_tip: CoinSpend;
    singleton_tip_state: PoolState;
    points: uint64;
    difficulty: uint64;
    payout_instructions: str;
    is_pool_member: bool;
};
