import { PublicKey } from '@solana/web3.js'; import BN from 'bn.js'; import type { HasProvider } from './account'; import type { Provider } from './provider'; import type { Connection } from '@solana/web3.js'; export declare const U64_MAX: BN; export type StakeAccountParsed = { address: PublicKey; withdrawer: PublicKey | null; staker: PublicKey | null; voter: PublicKey | null; activationEpoch: BN | null; deactivationEpoch: BN | null; isCoolingDown: boolean; isLockedUp: boolean; balanceLamports: BN | null; stakedLamports: BN | null; currentEpoch: number; currentTimestamp: number; }; export declare function getStakeAccount(connection: Provider | Connection | HasProvider, address: PublicKey, currentEpoch?: number): Promise; //# sourceMappingURL=stakeAccount.d.ts.map