import { PropsWithChildren, ReactElement } from 'react'; import { ThemeProviderT } from './types'; import type { Density } from '@sprinklrjs/spaceweb-themes/types'; declare type Props = PropsWithChildren<{ theme?: ThemeProviderT; containerElement?: HTMLElement | null; density?: Density; }>; export declare const ThemeProvider: (props: Props) => ReactElement; export {};