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