import { type PublicKey, type Transaction, type VersionedTransaction } from '@solana/web3.js'; export interface AnchorWallet { publicKey: PublicKey; signTransaction(transaction: T): Promise; signAllTransactions(transactions: T[]): Promise; } export declare function useAnchorWallet(): AnchorWallet | undefined; //# sourceMappingURL=useAnchorWallet.d.ts.map