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