import { BaseModel } from './util'; export declare enum RugbyFoulSanctions { scrum = 1, lineout = 2, free_kick = 3, penalty_shot = 4, yellow_card = 5, red_card = 6, start_kick = 7, twenty_two_meters_kick = 8, conversion_cancel = 9 } export declare enum RugbyFoulGameStage { start_kick = 1, open_game = 2, tackle = 3, ruck_or_maul = 4, scrum = 5, out_and_lineout = 6, scoring_field = 7, kick_on_goal = 8, free_kick = 9, team = 10 } export declare class RugbyFoulType extends BaseModel { id: number; name: string; sanction: RugbyFoulSanctions[]; gameStage: RugbyFoulGameStage; static toFront(data: any): any; static toBack(data: any): any; }