import { Cardano, Handle } from '@cardano-sdk/core'; import { WithCIP67 } from './withCIP67.js'; import { FilterByPolicyIds } from './types.js'; import { Logger } from 'ts-log'; import { ProjectionOperator } from '../../types.js'; 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