import { StatType } from "../value_object/stat_type";
import { Weapon } from "../../weapon/interface/weapon";
import { Context } from "../../context";
export declare class StatService {
    protected weapon: Weapon;
    protected context: Context;
    constructor(weapon: Weapon, context: Context);
    getStat(statType: StatType): number;
}
