/** @format */
import { HTMLAttributes } from "react";
import { ColorScheme } from "./theme";
import "./sass/main.scss";
export declare type ThemeProviderProps = {
    /**
     * primary color of theme.
     */
    colorScheme?: ColorScheme;
} & HTMLAttributes<HTMLDivElement>;
export declare function ThemeProvider({ colorScheme, children, ...props }: ThemeProviderProps): JSX.Element;
