import { Address, ProgramDerivedAddress } from "@solana/kit"; //#region src/generated/pdas/tokenVault.d.ts type TokenVaultSeeds = { /** The token mint address */ tokenMint: Address; /** The pool address */ pool: Address; }; /** * A token vault account that holds tokens for a specific pool. * Each pool has separate vaults for token A and token B. */ declare function findTokenVaultPda(seeds: TokenVaultSeeds, config?: { programAddress?: Address | undefined; }): Promise; //#endregion export { TokenVaultSeeds, findTokenVaultPda }; //# sourceMappingURL=tokenVault.d.ts.map