/** * @file useInscriptions.ts * @description React hook for fetching inscriptions on an InkdToken. */ import type { InkdClient } from "../InkdClient"; import type { Inscription } from "../types"; interface UseInscriptionsReturn { inscriptions: Inscription[]; loading: boolean; error: Error | null; refetch: () => void; activeCount: number; } /** Fetch inscriptions on a specific InkdToken with loading states. */ export declare function useInscriptions(client: InkdClient, tokenId: bigint): UseInscriptionsReturn; export {}; //# sourceMappingURL=useInscriptions.d.ts.map