import { Address, ProgramDerivedAddress } from "@solana/kit"; //#region src/generated/pdas/customizablePool.d.ts type CustomizablePoolSeeds = { /** The first token mint (sorted) */ tokenAMint: Address; /** The second token mint (sorted) */ tokenBMint: Address; }; /** * A customizable pool account that allows for custom fee configurations. * Unlike regular pools, customizable pools are not tied to a config account. * Token mints must be sorted - tokenAMint should be lexicographically smaller than tokenBMint. */ declare function findCustomizablePoolPda(seeds: CustomizablePoolSeeds, config?: { programAddress?: Address | undefined; }): Promise; //#endregion export { CustomizablePoolSeeds, findCustomizablePoolPda }; //# sourceMappingURL=customizablePool.d.ts.map