import { Gender } from './gender.enum';
import { AgeCategory } from './age-category.enum';
import { ParticipantType } from './participant-type.enum';
/**
 * ParticipantBodyStructure class is responsible for
 * deserializing the response from the metadata
 * API to a participant.
 */
export declare class ParticipantBodyStructure {
    id?: number;
    sportId?: number;
    locationId?: number;
    name?: string;
    gender?: Gender | null;
    ageCategory?: AgeCategory | null;
    type?: ParticipantType | null;
}
