import { OCTET_STRING } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary UUID * @description * * ### ASN.1 Definition: * * ```asn1 * UUID ::= OCTET STRING(SIZE (16)) * ``` */ export type UUID = OCTET_STRING; export declare const _decode_UUID: $.ASN1Decoder; export declare const _encode_UUID: $.ASN1Encoder; //# sourceMappingURL=UUID.ta.d.mts.map