import React, { PropsWithChildren } from 'react'; import { GeistUIThemes } from "../themes/presets"; export interface Props { themeType?: string; themes?: Array; } declare const ThemeProvider: React.FC>; export default ThemeProvider;