import type { Name } from "../common/name";
import type { NaturePokeathlonStatAffectSets } from "./nature-pokeathlon-stat-affect-sets";
export type PokeathlonStat = {
    id: number;
    name: string;
    names: Name[];
    affecting_natures: NaturePokeathlonStatAffectSets;
};
