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