import { ReactNode } from 'react'; export default function Theme({ children, theme }: { children: ReactNode; theme?: any; }): JSX.Element;