import 'react-toastify/dist/ReactToastify.css'; import React from 'react'; import { type themeOverrides } from '../typings'; /** * A wrapper for entire app that provides theme context. */ declare const FormThemeProvider: ({ theme, children }: FormThemeProviderProps) => import("react/jsx-runtime").JSX.Element; export interface FormThemeProviderProps { /** * Object with properties that overrides default theme. */ theme?: themeOverrides; children: React.ReactNode; } export default FormThemeProvider;