import type { LunaHeliusClient } from '../LunaHeliusClient'; import type { RpcResponse } from '../types'; export declare class StakingApi { private readonly client; constructor(client: LunaHeliusClient); getStakeAccounts(owner: string): Promise>; createStakeTransaction(params: { fromAddress: string; toAddress: string; amount: number; }): Promise>; createUnstakeTransaction(params: { fromAddress: string; stakeAccount: string; }): Promise>; } //# sourceMappingURL=StakingApi.d.ts.map