import React, { PropsWithChildren } from "react"; import { Config } from "tailwindcss"; import { theme } from "../Provider"; import { DefaultColors } from "tailwindcss/types/generated/colors"; export interface Theme { lightTheme: () => any; darkTheme: () => any; defaultTheme: () => any; isDark: boolean; theme: "dark" | "light" | "default"; colors: DefaultColors; setZinc: any; zinc: { 50: string; 100: string; 200: string; 300: string; 400: string; 500: string; 600: string; 700: string; 800: string; 900: string; }; } declare global { interface Window { tailwind: { config: Partial; }; } } export declare const StyleContext: React.Context<{}>; declare function StyleProvider({ children, mode, color, }: PropsWithChildren): JSX.Element; export default StyleProvider;