export declare const NAMESPACE_CODE = 181; export declare enum AttachmentType { BINARY = 1 } export declare enum ModelType { SCALAR = 10, SHAPE = 11, DOCUMENT = 20, CLUSTER = 21 } export declare enum DocumentType { MERGE_DOCUMENT = 30 } export declare enum ExternalType { PLUGIN_NODE = 40 } export type KubunType = AttachmentType | ModelType | DocumentType | ExternalType; export declare class KubunID { #private; constructor(type: T, dataBytes: Uint8Array); get type(): T; get data(): Uint8Array; get bytes(): Uint8Array; equals(other: KubunID): boolean; toBytes(): Uint8Array; toString(): string; }