"use client"; import type { ThemeProviderProps } from "next-themes"; import * as React from "react"; import { HeroUIProvider } from "@heroui/system"; import { useRouter } from "next/navigation"; import { ThemeProvider as NextThemesProvider } from "next-themes"; import { ToastProvider } from "@heroui/react"; export interface ProvidersProps { children: React.ReactNode; themeProps?: ThemeProviderProps; } declare module "@react-types/shared" { interface RouterConfig { routerOptions: NonNullable< Parameters["push"]>[1] >; } } export default function Providers({ children, themeProps }: ProvidersProps) { const router = useRouter(); return ( {children} ); }