import { WalletConfiguration } from "@coin-voyage/crypto/types/wallet";
import React from "react";
type AppContextValue = {
    walletConfig?: WalletConfiguration;
};
export declare const AppContext: React.Context<AppContextValue | null>;
export declare function useAppContext(): AppContextValue;
export {};
