import { BurstOfStrength } from "./BurstOfStrength.js"; import { Endurance } from "./Endurance.js"; import { Initiative } from "./Initiative.js"; import { LifePoints } from "./LifePoints.js"; import { LongHaul } from "./LongHaul.js"; import { Memorize } from "./Memorize.js"; import { OutOfHarmsWay } from "./OutOfHarmsWay.js"; import { Recall } from "./Recall.js"; import { Resistance } from "./Resistance.js"; import { Attributes } from "../attributes/index.js"; export interface IDerivedTraits { LifePoints: LifePoints; Initiative: Initiative; Endurance: Endurance; Resistance: Resistance; BurstOfStrength: BurstOfStrength; OutOfHarmsWay: OutOfHarmsWay; LongHaul: LongHaul; Memorize: Memorize; Recall: Recall; } export declare class DerivedTraits implements IDerivedTraits { private attributes; constructor(attributes: Attributes); LifePoints: LifePoints; Initiative: Initiative; Endurance: Endurance; Resistance: Resistance; BurstOfStrength: BurstOfStrength; OutOfHarmsWay: OutOfHarmsWay; LongHaul: LongHaul; Memorize: Memorize; Recall: Recall; } //# sourceMappingURL=DerivedTraits.d.ts.map