AnyClaimStatus:
    | {
        buffer2: number[];
        claimant: PublicKey;
        claimsCount: number;
        closed: boolean;
        closedTs: BN;
        distributor: PublicKey;
        lastAmountPerUnlock: BN;
        lastClaimTs: BN;
        lockedAmount: BN;
        lockedAmountWithdrawn: BN;
        unlockedAmount: BN;
    }
    | {
        state: DecodeEnum<
            { kind: "enum"; variants: [{ name: "claimed" }, { name: "closed" }] },
            EmptyDefined,
        >;
    }