import { Address, ProgramDerivedAddress } from "@solana/kit"; //#region src/generated/pdas/rewardVault.d.ts type RewardVaultSeeds = { /** The pool address */ pool: Address; /** The reward index */ rewardIndex: number; }; /** * A reward vault account that holds reward tokens for distribution to liquidity providers. * Each pool can have multiple reward vaults indexed by rewardIndex (0-2). */ declare function findRewardVaultPda(seeds: RewardVaultSeeds, config?: { programAddress?: Address | undefined; }): Promise; //#endregion export { RewardVaultSeeds, findRewardVaultPda }; //# sourceMappingURL=rewardVault.d.ts.map