import { DIDTypeArg } from "@arcblock/did"; import { WalletObject } from "@ocap/wallet"; //#region src/index.d.ts /** * Gen user DID from app did and rootSk * * Spec: https://github.com/ArcBlock/ABT-DID-Protocol#request-did-authentication */ declare const fromAppDid: (appDid: string, rootSk: string, type?: DIDTypeArg, index?: number) => WalletObject; //#endregion export { fromAppDid };