import Weight from "../weight/weight"; import Height from "../height/height"; import { RaceType } from "./RaceType"; declare type Years = number; export default abstract class Race { readonly type: RaceType; readonly maxAge: Years; readonly minHeight: Height; readonly maxHeight: Height; readonly minWeight: Weight; readonly maxWeight: Weight; constructor({ type, maxAge, maxHeight, maxWeight, }: { type: RaceType; maxAge: Years; maxHeight: Height; maxWeight: Weight; }); getRaceTypeDisplayText(): string; static createRaceTypeSlug(raceType: string): RaceType; } export {};