import { type Address, type ProgramDerivedAddress } from '@solana/kit'; export type AssociatedTokenSeeds = { /** The wallet address of the associated token account. */ owner: Address; /** The address of the token program to use. */ tokenProgram: Address; /** The mint address of the associated token account. */ mint: Address; }; export declare function findAssociatedTokenPda(seeds: AssociatedTokenSeeds, config?: { programAddress?: Address | undefined; }): Promise; //# sourceMappingURL=associatedToken.d.ts.map