export declare const basicCode = "0123456789ABCDEFGHJKLMNPQRTUWXY"; export declare const organization: { label: string; value: string; children: { label: string; value: string; }[]; }[]; export declare function getBodyIdentifier(): string; export declare function getRandomOrg(): string[]; export declare function isBodyIdentifier(value: string): boolean; export declare function normalizeBodyIdentifier(value: string): string; export declare function createUnifiedIdentifier(orgCode?: string, areaCode?: string, bodyIdentifier?: string): string; /** * @deprecated 即将废弃,请使用 `createUnifiedIdentifier` 替代。 */ export declare const createSocialCreditCode: typeof createUnifiedIdentifier; export declare const unifiedIdentifierUtil: { /** * @deprecated 即将废弃,请使用 `getRandomCityAndAreaCode` 替代。 */ getRandomCityAndAreaCode: () => string; basicCode: string; organization: { label: string; value: string; children: { label: string; value: string; }[]; }[]; getBodyIdentifier: typeof getBodyIdentifier; getRandomOrg: typeof getRandomOrg; isBodyIdentifier: typeof isBodyIdentifier; normalizeBodyIdentifier: typeof normalizeBodyIdentifier; createSocialCreditCode: typeof createUnifiedIdentifier; createUnifiedIdentifier: typeof createUnifiedIdentifier; };