import React, { FC } from 'react'; import { theme as iTheme } from '@servicetitan/anvil-themes'; export interface themeProviderProps { theme?: iTheme; children?: React.ReactNode; } export declare const ThemeProvider: FC;