import React, { PropsWithChildren } from 'react'; import { type MestTheme } from "../themes"; export interface Props { theme?: MestTheme; } declare const ThemeProvider: React.FC>; export default ThemeProvider;