import React from "react";
import "./Ui89ThemeBackground.css";
import "../style/chosen-theme.css";
import { Ui89Theme } from "../theme";
export interface Ui89ThemeBackgroundProps {
    theme?: Ui89Theme | keyof typeof Ui89Theme;
    children: React.ReactNode;
}
export declare function Ui89ThemeBackground({ theme, children, }: Ui89ThemeBackgroundProps): React.JSX.Element;
