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