/** * Veramo Agent Factory * * Creates a Veramo agent instance for AgenticTrust client use * This allows the core package to create agents internally without requiring * the consuming application to set up Veramo */ import type { VeramoAgent } from './veramo'; /** * Create a Veramo agent instance for AgenticTrust client * * @param privateKey - Optional Ethereum private key (hex string with or without 0x prefix) * If not provided, a key will be generated for the session * @param rpcUrl - Optional Sepolia testnet RPC URL */ export declare function createVeramoAgentForClient(privateKey?: string, rpcUrl?: string): Promise; //# sourceMappingURL=veramoFactory.d.ts.map