import { Address, ProgramDerivedAddress } from "@solana/kit"; //#region src/generated/pdas/pool.d.ts type PoolSeeds = { /** The config account address */ config: Address; /** The first token mint (sorted) */ tokenAMint: Address; /** The second token mint (sorted) */ tokenBMint: Address; }; /** * A liquidity pool account for a specific token pair under a given config. * Token mints must be sorted - tokenAMint should be lexicographically smaller than tokenBMint. */ declare function findPoolPda(seeds: PoolSeeds, config?: { programAddress?: Address | undefined; }): Promise; //#endregion export { PoolSeeds, findPoolPda }; //# sourceMappingURL=pool.d.ts.map