import { type Leaderboard } from "@betswirl/sdk-core"; import { type Address } from "viem"; export interface UseClaimableLeaderboardAmountProps { leaderboard?: Leaderboard; playerAddress?: Address; enabled?: boolean; } export declare function useClaimableLeaderboardAmount(props: UseClaimableLeaderboardAmountProps): { wagmiHook: import("wagmi").UseReadContractReturnType; claimableAmount: bigint | undefined; };