import { ActorSubclass, HttpAgent } from '@dfinity/agent'; import RegistryStandard, { Metadata } from '../interfaces/dab_registries/registry_standard'; declare class Registry { protected actor: ActorSubclass; canisterId: string; constructor(canisterId: any, agent?: HttpAgent); name: () => Promise; add: (metadata: Metadata) => Promise; get: (principalId: string) => Promise; remove: (principalId: string) => Promise; } export default Registry;