UNPKG

237 BTypeScriptView Raw
1import * as React from 'react';
2import type { Theme } from '../types';
3declare type Props = {
4 value: Theme;
5 children: React.ReactNode;
6};
7export default function ThemeProvider({ value, children }: Props): JSX.Element;
8export {};