import type { Connection, PublicKey } from "@solana/web3.js"; /** * Checks if a Solana account exists by fetching its info. * @returns True if the account exists, false otherwise. */ export declare function doesAccountExist(connection: Connection, address: PublicKey): Promise;