UNPKG

362 BTypeScriptView Raw
1import { List } from "immutable";
2import * as React from "react";
3import { ThemeProviderComponent } from "styled-components";
4import { Theme } from "./types/Theme";
5export interface ThemesProviderProps {
6 themes: List<Theme>;
7 ThemeProvider: ThemeProviderComponent<any>;
8}
9export declare const ThemesProvider: React.FunctionComponent<ThemesProviderProps>;