export declare enum Position {
    UNSELECTED = "UNSELECTED",
    FILL = "FILL",
    TOP = "TOP",
    JUNGLE = "JUNGLE",
    MIDDLE = "MIDDLE",
    BOTTOM = "BOTTOM",
    UTILITY = "UTILITY"
}
export declare enum Role {
    CAPTAIN = "CAPTAIN",
    MEMBER = "MEMBER"
}
export interface PlayerDTO {
    summonerId: string;
    teamId: string;
    position: Position;
    role: Role;
}
//# sourceMappingURL=player.d.ts.map