import { TeamName } from "./Constants.js"; /** * Extract information from a turret name */ export declare class Turret { readonly name: string; readonly id: string; readonly lane: number; readonly position: number; readonly team: TeamName; /** * Creates a new Turret instance * @param name in format of Turret_T{team}_{lane}_{position}_{id} * @see NameConstants */ constructor(name: string); /** * Checks if the turret is a nexus turret. */ isNexusTurret(): boolean; } //# sourceMappingURL=Turret.d.ts.map