import { Connection, PublicKey, TransactionInstruction } from '@solana/web3.js'; export declare const findAta: (mint: PublicKey, owner: PublicKey) => PublicKey; export declare const getOrCreateAtaForMint: ({ connection, mint, owner, }: { connection: Connection; mint: PublicKey; owner: PublicKey; }) => Promise<{ tokenAccount: PublicKey; instructions: TransactionInstruction[]; }>; export declare const getNftTokenAcc: (conn: Connection, mint: PublicKey) => Promise; //# sourceMappingURL=spl_token.d.ts.map