import { type ReactNode } from "react"; import { PlayNowEvent } from "./types/types"; interface AppProvidersProps { children: ReactNode; onLeaderboardPlayNow?: (event: PlayNowEvent) => void; } export declare function AppProviders({ children, onLeaderboardPlayNow }: AppProvidersProps): import("react/jsx-runtime").JSX.Element; export {};