export declare enum DIDTypes { INDIVIDUAL = 1, ORGANIZATION = 2, NETWORK = 3 } export declare type DIDType = keyof typeof DIDTypes; export declare const DIDHelpers: { labels: () => string[]; codes: () => number[]; fromCode: (code: number) => "INDIVIDUAL" | "ORGANIZATION" | "NETWORK"; fromLabel: (label: "INDIVIDUAL" | "ORGANIZATION" | "NETWORK") => number; };