export interface VerifyAuthentication {
    FirstName: string;
    LastName: string;
}
export interface DrivingOffenseInquiryBill {
    Amount: string;
    BillId: string;
    City: string;
    Date: string;
    DeliveryType: string;
    Location: string;
    PayId: string;
    Type: string;
    TypeId: string;
    ImageId: string;
}
export interface BasicDrivingOffenseInquiry {
    SeparatedPlateNumber: SeparatedPlateNumber;
    PlateNumber: string;
    TotalAmount: string;
    BillId: string;
    PayId: string;
    ComplaintCode: string;
    ComplaintStatus: string;
}
export interface AdvancedDrivingOffenseInquiry {
    Bills: DrivingOffenseInquiryBill[];
    PlateNumber: string;
    TotalAmount: string;
    TotalBillId: string;
    TotalPayId: string;
    SeparatedPlateNumber: SeparatedPlateNumber;
}
export interface GetDrivingOffenseImage {
    PlateImage: string;
    VehicleImage: string;
}
export interface NegativeScoreInquiry {
    LicenseNumber: string;
    NegativeScore: string;
    OffenseCount: string;
}
export interface AdvancedNegativeScoreInquiry {
    NegativeScore: string;
    AllowedToDrive: 0 | 1;
    Rule: string;
}
declare type SeparatedPlateNumber = {
    Type: string;
    Part1: string;
    Part2: string;
    Part3: string;
    Part4: string;
    Part5: string;
    Part6: string;
};
export {};
