import { BaseModel } from './util'; import { WorkHand } from './basketball-profile'; export declare enum GameHandballPosition { goalkeeper = 1, winger = 2, pivot = 3, centre_back = 4, fullback = 5 } export declare class HandballProfile extends BaseModel { id: number; userId: number; position: GameHandballPosition; workHand: WorkHand; static toFront(value: any): any; static toBack(value: any): any; }