import { web3 } from '@coral-xyz/anchor';
import { BanxStake, BanxTokenStake, BanxAdventure, BanxAdventureSubscription, BanxStakingSettings, BanxPointsMap, BanxAdventureSubscriptionSnapshot } from '../../types';
export declare const getBanxStakingAccounts: (programId: web3.PublicKey, connection: web3.Connection) => Promise<{
    banxStakes: BanxStake[];
    banxTokenStake: BanxTokenStake[];
    adventures: BanxAdventure[];
    adventureSubscriptions: BanxAdventureSubscription[];
    banxPointsMaps: BanxPointsMap[];
    stakingSettings: BanxStakingSettings;
    banxAdventureSubscriptionSnapshots: BanxAdventureSubscriptionSnapshot[];
}>;
