import { Address, AccountMeta, AccountSignerMeta, Instruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export declare const DISCRIMINATOR: Buffer; export interface WithdrawRewardsArgs { amount: BN; } export interface WithdrawRewardsAccounts { vaultAdminAuthority: TransactionSigner; vaultState: Address; tokenMint: Address; tokenVault: Address; baseVaultAuthority: Address; withdrawTokenAccount: Address; tokenProgram: Address; } export declare const layout: import("buffer-layout").Layout; export declare function withdrawRewards(args: WithdrawRewardsArgs, accounts: WithdrawRewardsAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=withdrawRewards.d.ts.map