import React from 'react'; import type { ColorScheme, CustomTheme } from './types'; type CustomThemeProviderProps = { colorScheme?: ColorScheme; children?: React.ReactNode; }; export default function createThemeProvider(theme: CustomTheme): (props: CustomThemeProviderProps) => React.JSX.Element; export {};