import { Network } from '@mintbase-js/sdk'; import { Pagination } from '../../types'; export interface TokenProvenanceData { nft_activities: { price: number | null; action_receiver: string | null; action_sender: string | null; tx_sender: string | null; kind: string; timestamp: string; receipt_id: string; }[]; nft_activities_aggregate: { aggregate: { count: number; }; }; } export interface TokenProvenanceProps { tokenId: string | number; contractAddress: string; pagination?: Pagination; network?: Network; } //# sourceMappingURL=tokenProvenance.types.d.ts.map