declare type InstanceConstructorParams = { id: string; callZome: any; dnaAddress: string; agentAddress: string; }; /** * Handy reference to an instance within a Conductor. * Rather than using conductor.call('instanceId', 'zomeName', 'funcName', params), you can: * `conductor.instances[instanceId].call('zomeName', 'funcName', params)` */ export declare class Instance { id: string; callZome: any; agentAddress: string; dnaAddress: string; constructor(o: InstanceConstructorParams); call: (...args: any[]) => Promise; } export {};