import React from "react"; /** * Wrapper for React-hooks-based Streamlit components. * * Bootstraps the communication interface between Streamlit and the component. */ export interface StreamlitProviderProps { children: React.ReactNode; } export declare function StreamlitProvider(props: StreamlitProviderProps): import("react/jsx-runtime").JSX.Element | null;