import type { TransactionSendingSigner } from "@solana/kit";
/**
 * Context state for providing Solana Kit wallet utilities throughout the app.
 */
export interface WalletContextState {
    /** The transaction sending signer, null when wallet is not connected */
    signer: TransactionSendingSigner | null;
}
/**
 * React context for wallet-related functionality
 */
export declare const WalletContext: import("react").Context<WalletContextState | undefined>;
//# sourceMappingURL=wallet-context.d.ts.map