///
import { AccountInfo, Connection, PublicKey, TransactionInstruction } from '@solana/web3.js';
export declare const getATA: (tokenMint: PublicKey, owner: PublicKey, connection: Connection) => Promise<{
account: AccountInfo | null;
toAccount: PublicKey;
}>;
export declare const getOrCreateATAInstruction: (tokenMint: PublicKey, owner: PublicKey, connection: Connection, payer?: PublicKey) => Promise<[PublicKey, TransactionInstruction?]>;