import { Principal } from '@dfinity/principal'; import { _SERVICE as OwnersAPI } from '../../candid/owners'; import { Delegate } from './delegate'; export declare class OwnersDelegate extends Delegate { protected readonly _canisterPrincipal: Principal | string; constructor(_canisterPrincipal: Principal | string, network: 'ic' | 'local'); get(ownerId: bigint): Promise; lookup(principal: Principal | string): Promise; }