import type { ThemeProviderProps as BaseThemeProviderProps } from "@vertigis/react-ui/styles"; import type { FC } from "react"; /** * Properties for the ThemeProvider component. */ export type ThemeProviderProps = Omit & { theme?: BaseThemeProviderProps["theme"]; }; /** * A component that provides theme support. Normally this is provided at the * root of the React hierarchy via UIContextRoot, but can also be used to * override theme settings for subtrees of the React hierarchy. */ declare const ThemeProvider: FC; export default ThemeProvider;