import { Address, ProgramDerivedAddress } from "@solana/kit"; //#region src/generated/pdas/positionNftAccount.d.ts type PositionNftAccountSeeds = { /** The position NFT mint address */ positionNftMint: Address; }; /** * The token account that holds the position NFT. * This is a program-owned account that stores the NFT representing a liquidity position. */ declare function findPositionNftAccountPda(seeds: PositionNftAccountSeeds, config?: { programAddress?: Address | undefined; }): Promise; //#endregion export { PositionNftAccountSeeds, findPositionNftAccountPda }; //# sourceMappingURL=positionNftAccount.d.ts.map