declare enum CredentialFormat {
    /**
     * Cartão
     */
    CARD = "CARD",
    /**
     * Biometria
     */
    BIOMETRY = "BIOMETRY",
    /**
     * Placa
     */
    LICENSE_PLATE = "LICENSE_PLATE",
    /**
     * QR Code
     */
    QRCODE = "QRCODE",
    /**
     * Bluetooth
     */
    BLUETOOTH = "BLUETOOTH"
}
export = CredentialFormat;
