import type { getStakeInstruction } from '@nosana/stake-program'; import type { InstructionsHelperParams } from './types.js'; export type StakeParams = { amount: number | bigint; /** Unstake period in days */ days: number; }; export type StakeInstruction = ReturnType; export type CreateStake = (params: StakeParams) => Promise; export declare function stake({ amount, days }: StakeParams, { config, deps, client, getRequiredWallet, getNosATA }: InstructionsHelperParams): Promise; //# sourceMappingURL=stake.d.ts.map