import { RegistryApiService } from '@affinidi/internal-api-clients'; import { KeysService } from '@affinidi/common'; import { DidMethod } from '../dto/shared.dto'; declare type AnchoringParams = { registry: RegistryApiService; keysService: KeysService; didMethod: DidMethod; did: string; nonce: number; anchoredDidElem: boolean; additionalJoloParams?: { didDocument: any; seedHex: string; }; origin?: string; }; export declare const anchorDid: (params: AnchoringParams) => Promise<{ did: string; }>; export {};