/// import { ThemeProviderProps } from '../../../props'; /** * Theme provider, which allows you to adjust the look and feel of child components. * * Components not wrapped in a theme provider use the current theme from the connected Fusion instance by default. * * @example * Example of a theme provider, which changes the colors and font of the nested indicator chart: * ```tsx * * * * ``` * * Indicator chart with custom theme settings: * * * * * * For comparison, indicator chart with default theme settings: * * * @see {@link ThemeSettings} and IndicatorChart * @param props - Theme provider props * @returns A Theme Provider component * @group Contexts */ export declare const ThemeProvider: import("react").FunctionComponent;