import { ParsedAccount } from '../../utils/solana'; import { CachedGame, Currency, Game } from './structs'; export declare function gameToCached(game: ParsedAccount): CachedGame; export declare function getMintFromCurrency(currency: Currency): { mint: string; decimals: number; };