import { default as HumanInventory } from '../inventory/HumanInventory';
import { Entity } from './';
/**
 * Represents a Player entity.
 * @internal
 */
export default class Human extends Entity {
    static MOB_ID: string;
    protected inventory: HumanInventory;
    getInventory(): HumanInventory;
}
//# sourceMappingURL=Human.d.ts.map