export declare enum VehicleSeat {
    AnyPassenger = -2,
    Driver = -1,
    FrontRight = 0,
    BackLeft = 1,
    BackRight = 2,
    ExtraLeft1 = 3,
    ExtraRight1 = 4,
    ExtraLeft2 = 5,
    ExtraRight2 = 6,
    ExtraLeft3 = 7,
    ExtraRight3 = 8
}
