export interface Tyre {
    color: string;
    name: string;
}
export interface Position {
    short: 'RL' | 'RR' | 'FL' | 'FR';
    long: string;
}
export declare const TYRES: Record<number, Tyre>;
export declare const VISUAL_TYRES: Record<number, Tyre>;
export declare const WHEEL_POSITIONS: Record<number, Position>;
