import type ASN1Element from "../asn1.mjs";
export default class CharacterString {
    readonly identification: ASN1Element;
    readonly stringValue: Uint8Array;
    constructor(identification: ASN1Element, stringValue: Uint8Array);
    toString(): string;
    toJSON(): unknown;
}
