import type { ParsedDid } from "@credo-ts/core";
export declare const nearSdkAnonCredsRegistryIdentifierRegex: RegExp;
export declare const nearDidRegex: RegExp;
export declare const nearDidVersionRegex: RegExp;
export declare const nearDidVersionsRegex: RegExp;
export declare const nearDidMetadataRegex: RegExp;
export declare const nearResourceRegex: RegExp;
export declare const nearResourceMetadataRegex: RegExp;
export type ParsednearDid = ParsedDid & {
    network: string;
};
export declare function parsenearDid(didUrl: string): ParsednearDid | null;
