import { PropsWithChildren } from 'react'; import { StyleContextValue } from './style-context'; import type { BaseTheme } from './theme'; export interface SxProviderProps { theme: BaseTheme; dangerouslySetColorScheme?: StyleContextValue['colorScheme']; } export declare function SxProvider({ children, theme, dangerouslySetColorScheme, }: PropsWithChildren): JSX.Element; //# sourceMappingURL=sx-context.d.ts.map