//#region src/utils/did.d.ts
declare const POLYGON_DID_REGEX: RegExp;
declare function getNetworkFromDid(did: string): "testnet" | "mainnet";
declare function parseDid(did: string, options?: {
  rpcUrl?: string;
  contractAddress?: string;
}): {
  network: string;
  contractAddress: string;
  networkUrl: string;
  didAddress: string;
};
declare function validateDid(did: string): boolean;
declare function getDidFromAddress(address: string, network: string): string;
//#endregion
export { POLYGON_DID_REGEX, getDidFromAddress, getNetworkFromDid, parseDid, validateDid };
//# sourceMappingURL=did.d.mts.map