import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
import { DateResult } from "./DateResult";
import type { DrivingLicenseCategoryJSON } from "../SerializedTypes";
export declare class DrivingLicenseCategory implements Serializable<DrivingLicenseCategoryJSON> {
    private json;
    get code(): string;
    get dateOfIssue(): DateResult | null;
    get dateOfExpiry(): DateResult | null;
    private static fromJSON;
    toJSONObject(): DrivingLicenseCategoryJSON;
}
