import type { Principal } from '@dfinity/principal'; import type { ActorMethod } from '@dfinity/agent'; import type { IDL } from '@dfinity/candid'; export type AssetId = bigint; export type GlobalId = [bigint, bigint]; export type OwnerId = bigint; export interface OwnersIngressAPI { get: ActorMethod<[OwnerId], Principal>; lookup: ActorMethod<[Principal], [] | [OwnerId]>; } export type RemoteId = [Principal, VirId]; export type SubId = bigint; export type Time = bigint; export type VirId = bigint; export interface _SERVICE extends OwnersIngressAPI {} export declare const idlFactory: IDL.InterfaceFactory;