import React from 'react';
import { IOnesyTheme } from '@onesy/style/OnesyTheme';
import { ThemeRequired } from '../style';
export interface IThemeValue extends ThemeRequired {
    updateWithRerender: (value: IOnesyTheme) => ThemeRequired;
}
export interface ITheme extends React.HTMLAttributes<any> {
    root?: boolean;
    value?: IOnesyTheme;
    addCssVariables?: boolean;
    children?: any;
}
declare const Theme: React.FC<ITheme>;
export default Theme;
