import { FunctionComponent, ReactChild } from 'react'; import { EditorTheme } from '../../types/editor-theme'; import { EditorStyleConfig } from '../../types/editor-style'; interface NibThemeProviderProps { children: ReactChild; theme: EditorTheme | {}; styleConfig: EditorStyleConfig | {}; } declare const NibThemeProvider: FunctionComponent; export default NibThemeProvider;