import { IEventType } from "./event_type"; /** An Event that occurs when the license plate expires. */ export interface IEventTypeLicensePlateExpiry extends IEventType { /** * @inheritdoc */ id: string; /** * @inheritdoc */ name: string; } //# sourceMappingURL=event_type_license_plate_expiry.d.ts.map