import { BaseModel } from './util'; export declare enum WrestballWorkHand { left = 1, right = 2 } export declare class WrestballProfile extends BaseModel { id: number; userId: number; workHand: WrestballWorkHand; static toFront(value: any): any; static toBack(value: any): any; }