import type { WalletName } from '@solana/wallet-adapter-base'; import { BaseMessageSignerWalletAdapter, WalletReadyState } from '@solana/wallet-adapter-base'; import type { Transaction } from '@solana/web3.js'; import { PublicKey } from '@solana/web3.js'; export interface SpotWalletAdapterConfig { } export declare const SpotWalletName: WalletName<"Spot">; export declare class SpotWalletAdapter extends BaseMessageSignerWalletAdapter { name: WalletName<"Spot">; url: string; icon: string; readonly supportedTransactionVersions: null; private _connecting; private _wallet; private _publicKey; private _readyState; constructor(config?: SpotWalletAdapterConfig); get publicKey(): PublicKey | null; get connecting(): boolean; get connected(): boolean; get readyState(): WalletReadyState; connect(): Promise; disconnect(): Promise; signTransaction(transaction: T): Promise; signAllTransactions(transactions: T[]): Promise; signMessage(message: Uint8Array): Promise; private _disconnected; } //# sourceMappingURL=adapter.d.ts.map