import type { IdCaptureDocumentJSON } from "./IdCaptureDocument";
import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument";
import type { RegionSpecificSubtype } from "./RegionSpecificSubtype";
import { Region } from "../Region";
export interface RegionSpecificDocumentTypeJSON extends IdCaptureDocumentJSON {
    documentSubtype: string;
}
export declare class RegionSpecific extends IdCaptureDocument {
    readonly documentType: IdCaptureDocumentType;
    readonly subtype: RegionSpecificSubtype;
    constructor(subtype: RegionSpecificSubtype);
    get region(): Region;
    toJSONObject(): RegionSpecificDocumentTypeJSON;
}
