import type { IndySdkModuleConfigOptions } from './IndySdkModuleConfig'; import type { AgentContext, DependencyManager, Module } from '@aries-framework/core'; import { IndySdkModuleConfig } from './IndySdkModuleConfig'; export declare class IndySdkModule implements Module { readonly config: IndySdkModuleConfig; constructor(config: IndySdkModuleConfigOptions); register(dependencyManager: DependencyManager): void; initialize(agentContext: AgentContext): Promise; }