import { ActiveParticipant } from '../enums'; import { FixturePlayer } from './fixture-player'; import { UniformColor } from './uniform-color'; export declare class Participant { id?: number; name?: string; position?: string; rotationId?: number; isActive?: ActiveParticipant; form?: string; formation?: string; fixturePlayers?: FixturePlayer[]; gender?: number; ageCategory?: number; type?: number; shirtColor?: UniformColor; goalKeeperShirtColor?: UniformColor; }