import { ReactNode } from 'react'; import { UiTheme } from './context'; export interface Props { children?: ReactNode; theme: UiTheme; shouldLoadFonts?: boolean; } export declare function Theme({ children, theme, shouldLoadFonts }: Props): JSX.Element;