import { UTF8String } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary URI * @description * * ### ASN.1 Definition: * * ```asn1 * URI ::= UTF8String(SIZE(1..MAX)) * ``` */ export type URI = UTF8String; export declare const _decode_URI: $.ASN1Decoder; export declare const _encode_URI: $.ASN1Encoder; //# sourceMappingURL=URI.ta.d.mts.map