import { CompiledTheme, GlossRoot, Theme, ThemeProvide } from 'gloss' import React from 'react' import { ProvideDraggable } from './Draggable' import { ProvideFocus, ProvideFocusManager } from './Focus' import { ProvideHighlight } from './Highlight' import { ProvideSearch } from './Search' import { ProvideShare } from './Share' import { ProvideShortcut } from './Shortcut' import { themes } from './themes' import { ProvideVisibility } from './Visibility' export type ProvideUIProps = { activeTheme?: string themes?: { [key: string]: CompiledTheme } children?: any } export const ProvideUI = (props: ProvideUIProps) => { return ( {props.children} ) }