export declare class SessionType { private readonly name; private readonly sortOrder; private readonly usePitchType; static TEE: SessionType; static FRONT_TOSS: SessionType; static SOFT_TOSS: SessionType; static PITCHING_MACHINE: SessionType; static BATTING_PRACTICE: SessionType; static LIVE_PITCH_LEFTY: SessionType; static LIVE_PITCH_RIGHTY: SessionType; constructor(name: string, sortOrder: number, usePitchType: boolean); getName(): string; getSortOrder(): number; usesPitchType(): boolean; static asArray(): SessionType[]; }