/** Supported Driver Change Types. */ export declare enum DriverChangeType { /** Unknown key type. */ None = "None", /** * Driver Key - based Driver. Drivers use this key type to identify themselves. This * will typically be used when the driver ID relay is enabled. Makes a {@link IDriver} * until a different driver ID is assigned to the same device. */ DriverKey = "DriverKey", /** * DriverVehicleChange log - based Driver. Auto-generated by the system to support * the driver ID relay feature. */ DriverVehicleChange = "DriverVehicleChange", /** User-based Driver that is only active for the duration of a single trip. */ TripDriver = "TripDriver", /** * User-based Driver. Makes a {@link IDriver} until a different driver id is assigned * to the same device. First record in a trip overrides any other record encountered * during the trip it was added to, except "TripDriver". */ Driver = "Driver", /** * System-detected Driver reset (to UnknownDriver). Makes a {@link IDriver} due to * concurrent permanent registration of the same Driver for a different device. */ ResetDriver = "ResetDriver" } //# sourceMappingURL=driver_change_type.d.ts.map