export interface WidgetUIConfig {
    markKeylessWalletConnected?: boolean;
    markWCConnected?: boolean;
}
export interface WidgetUIConfigState {
    config?: WidgetUIConfig;
}
export declare const WidgetUIConfigContext: import("react").Context<WidgetUIConfigState | undefined>;
