export interface GemCount { gemId: number; count: number; } export interface UserStats { totalPlucks: number; lastGem: number | null; } export interface GemInfo { id: number; name: string; color: string; } export interface GemPluckConfig { contractAddress: string; contractName: string; network?: "mainnet" | "testnet"; } export declare const GEMS: GemInfo[];