import { ReactElement } from 'react'; import { Config } from '../config/ConfigProvider'; import { JSONChildren } from '../render/types'; import { Theme } from '../themes/ThemeProvider'; interface JSONContentProps { /** * Theme name */ theme?: Theme | string; /** * Configuration */ config?: Config; /** * json node to be rendered */ data?: JSONChildren; } declare function JSONContent({ theme, config, data }: JSONContentProps): ReactElement> | null; export { JSONContent };