export declare enum PreInspectionFormStatus { Valid = 0, Invalid = 1, Expired = 2, NotFound = 3 } export declare enum PreInspectionStatus { Ok = "ok", Denied = "denied" } export interface PreInspection { plate: string; countryCode: string; createdAt: string; updatedAt: string; currentInspection: { validity: { start: string; end: string; }; companies: { name: string; status: PreInspectionStatus; reason: string; provider: string; }[]; }; }