import { Cardano, Handle } from '@cardano-sdk/core'; import { WithCIP67 } from './withCIP67'; import { FilterByPolicyIds } from './types'; import { Logger } from 'ts-log'; import { ProjectionOperator } from '../../types'; export interface HandleOwnership { handle: Handle; latestOwnerAddress: Cardano.PaymentAddress | null; assetId: Cardano.AssetId; policyId: Cardano.PolicyId; datum?: Cardano.PlutusData; parentHandle?: Handle; } export interface WithHandles { handles: HandleOwnership[]; } export declare const withHandles: ({ policyIds }: FilterByPolicyIds, logger: Logger) => ProjectionOperator; //# sourceMappingURL=withHandles.d.ts.map