import { DocumentCodes, PageCodes, DocumentRole, Country } from './zenid-enums.generated.js'; /** * ZenID model representing a document template */ export interface ZenidModel { /** Document code identifier */ documentCode: DocumentCodes; /** Page code identifier */ pageCode: PageCodes; /** Document role/type */ documentRole: DocumentRole; /** ISO country code */ country: Country; /** Document width in millimeters */ widthMm: number; /** Document height in millimeters */ heightMm: number; /** Whether this is a generic (universal) document model */ isGeneric: boolean; } /** * Collection of all supported document models */ export declare const zenidModels: ZenidModel[]; //# sourceMappingURL=zenid-models.generated.d.ts.map