import type { Enums } from "../index";
/**
 * Standard Biometric Header (SBH)
 * @hideconstructor
 */
export default class SBH {
    /** ICAO header version - Version of the CBEFF patron header format  */
    version?: ArrayBuffer;
    /** Biometric type */
    type?: Enums.CBEFFBiometricType;
    /** Biometric sub-type. (NIST IR 6529A, Table 6) */
    sutype?: number;
    /** Creation date and time */
    issueDate?: ArrayBuffer;
    /** Validity period (from through) */
    expireDate?: ArrayBuffer;
    /** Creator of the biometric reference data (PID) */
    creator?: ArrayBuffer;
    /** Format Owner */
    formatOwner: ArrayBuffer;
    /** Format Type */
    formatType: ArrayBuffer;
}
