import { ASN1Tag } from "./tag.js"; export declare class ASN1Obj { readonly tag: ASN1Tag; readonly subs: ASN1Obj[]; readonly value: Uint8Array; constructor(tag: ASN1Tag, value: Uint8Array, subs: ASN1Obj[]); static parseBuffer(buf: Uint8Array): ASN1Obj; toDER(): Uint8Array; toBoolean(): boolean; toInteger(): bigint; toOID(): string; toDate(): Date; toBitString(): number[]; } //# sourceMappingURL=obj.d.ts.map