import type { Account } from "@solana/spl-token"; import type { Connection, PublicKey } from "@solana/web3.js"; /** * Get all token accounts by delegate. * @param connection - The connection to the Solana blockchain. * @param delegatePubkey - The public key of the delegate. * @returns The token accounts by delegate. */ export declare function getTokenAccountsByDelegate({ connection, delegate, mint, }: { connection: Connection; delegate: PublicKey; mint: PublicKey; }): Promise; //# sourceMappingURL=getTokenAccountsByDelegate.d.ts.map