import { WalletKitOptions } from './context'; import { ThemeVariant, ThemeMode } from '../../../ui/components/ThemeProvider'; import { CustomTheme } from '../../../ui/themes/base'; export interface WalletKitProviderProps { options?: WalletKitOptions; children: React.ReactNode; debugMode?: boolean; theme?: ThemeVariant; mode?: ThemeMode; customTheme?: CustomTheme; } export declare const WalletKitProvider: (props: WalletKitProviderProps) => import("react/jsx-runtime").JSX.Element;