import { BaseModel } from './util'; export declare enum GameBasketballPosition { point_guard = 1, shooting_guard = 2, small_forward = 3, power_forward = 4, center = 5 } export declare enum WorkHand { left = 1, right = 2 } export declare class BasketballProfile extends BaseModel { id: number; userId: number; position: GameBasketballPosition; workHand: WorkHand; static toFront(value: any): any; static toBack(value: any): any; }