import type { IdCaptureDocumentJSON } from "./IdCaptureDocument"; import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument"; import type { Region } from "../Region"; type DriverLicenseDocumentTypeJSON = IdCaptureDocumentJSON; export declare class DriverLicense extends IdCaptureDocument { readonly documentType: IdCaptureDocumentType; constructor(region: Region); get region(): Region; toJSONObject(): DriverLicenseDocumentTypeJSON; } export {};