import React, { PropsWithChildren } from "react"; export declare type ThemeValue = { "--color-primary"?: string; "--color-primary-dark"?: string; "--color-primary-reverse"?: string; "--color-disabled"?: string; "--color-warning"?: string; "--color-warning-light"?: string; "--background-color"?: string; "--body-background-color"?: string; "--font-color"?: string; "--font-color-secondary"?: string; "--font-color-tertiary"?: string; "--border-color"?: string; "--btn-color"?: string; "--btn-shadow-primary"?: string; "--mask-color"?: string; "--btn-color-disabled"?: string; }; export declare type ThemeProviderProps = { value: ThemeValue & { [key: string]: string; }; scoped?: boolean; }; export declare const ThemeContext: React.Context<{ [x: string]: string; }>; declare const ThemeProvider: React.FC>; export default ThemeProvider;