UNPKG

194 BTypeScriptView Raw
1import * as React from "react";
2import { ITheme } from "../theme";
3
4declare const ThemeProvider: React.FC<{ theme?: ITheme }>;
5export default ThemeProvider;
6
7export function useTheme(): ITheme;