Infer the State type from a StateSchemaFields. This is the type of the full state object.
InferStateSchemaValue: { [K in keyof TFields]: TFields[K] extends ReducedValue<
any,
any
> TFields[K]["ValueType"] : TFields[K] extends UntrackedValue<any> TFields[K]["ValueType"] : TFields[K] extends SerializableSchema<any, TOutput> TOutput : never }