import React from "react"; /** * Types */ export interface ThemeProviderProps { children: JSX.Element | JSX.Element[]; } /** * Setup */ export declare const theme: import("@mui/material/styles").Theme; declare const ThemeProvider: React.FC; export default ThemeProvider;