import { Connection, PublicKey } from "@solana/web3.js"; export declare const getAtaForMint: (mint: PublicKey, owner: PublicKey) => Promise<[PublicKey, number]>; export declare const getMetadata: (mint: PublicKey) => Promise; export declare function divideBn(number: any, decimals: number): any; export declare const findPdaAddress: (seeds: any, program: any) => Promise; export declare const findFullPdaAddress: (seeds: any, program: any) => Promise<[PublicKey, number]>; export declare function getUnixTimestamp(date: any): number; export declare function getTokenBalanceWeb3(connection: Connection, tokenAccount: PublicKey): Promise;