import { PropsWithChildren } from "react"; import { config } from "./env/EnvProvider"; export interface theme { color?: string; zinc?: { 50: string; 100: string; 200: string; 300: string; 400: string; 500: string; 600: string; 700: string; 800: string; 900: string; }; mode?: "both" | "dark" | "light"; } declare function Provider({ config, children, ...props }: PropsWithChildren<{ config?: config; } & theme>): JSX.Element; export default Provider;