import React, { FC } from 'react'; import { OcThemeName } from './Theming'; declare const ThemeContext: React.Context; export interface ThemeContextProps { children?: React.ReactNode; containerId?: string; theme?: OcThemeName; componentClassName?: string; } export declare const ThemeContextProvider: FC; export default ThemeContext;