7 lines
266 B
TypeScript
7 lines
266 B
TypeScript
import * as React from 'react';
|
|
import type { ThemeProviderProps } from './ThemeProvider.types';
|
|
/**
|
|
* ThemeProvider, used for providing css variables and registering stylesheets.
|
|
*/
|
|
export declare const ThemeProvider: React.FunctionComponent<ThemeProviderProps>;
|