import React from 'react';
import { Theme } from '../theme';
interface ThemeProviderProps {
    /** The theme to pass down to the library components */
    theme?: Theme;
}
declare const ThemeProvider: React.FC<ThemeProviderProps>;
export default ThemeProvider;
