/** * @file useToken.ts * @description React hook for fetching InkdToken data with loading states. */ import type { InkdClient } from "../InkdClient"; import type { InkdTokenData } from "../types"; interface UseTokenReturn { token: InkdTokenData | null; loading: boolean; error: Error | null; refetch: () => void; } /** Fetch and watch a specific InkdToken's data. */ export declare function useToken(client: InkdClient, tokenId: bigint): UseTokenReturn; export {}; //# sourceMappingURL=useToken.d.ts.map