import React, { FC } from 'react'; import { Theme } from 'theme-ui'; import { MarkdownComponentType } from '../Markdown'; export interface ThemeContextProps { theme?: Theme; } export declare const ThemeContext: React.Context; export interface ThemeProviderProps { /** * components to customize the markdown display. */ components?: MarkdownComponentType; theme?: Theme; } export declare const ThemeProvider: FC;