export interface Team { name: string; color: string; } export interface Driver { firstName: string; lastName: string; abbreviation: string; } export interface Track { name: string; } export interface Tyre { color: string; name: string; } export interface Position { short: 'RL' | 'RR' | 'FL' | 'FR'; long: string; } export declare type PacketTypes = 'motion' | 'session' | 'lapData' | 'event' | 'participants' | 'carSetups' | 'carTelemetry' | 'carStatus' | 'finalClassification' | 'lobbyInfo' | 'carDamage' | 'sessionHistory' | 'tyreSets' | 'motionEx'; export declare type PacketSize = number; export interface SessionTypes { short: string; long: string; type?: 'Q' | 'R' | 'FP' | 'TT'; }