import React from 'react';
import type { ThemeProviderProps } from './types';
/**
* ThemeProvider — wraps the component tree and provides MD3 theme context.
*
* When `mode` prop is omitted the provider auto-detects the OS color scheme
* via `Appearance` and subscribes to changes. Pass an explicit `mode` to
* override auto-detection (controlled mode).
*
* @example
* // Auto-detect OS theme
*
*
*
*
* @example
* // Force dark mode with a custom preset
*
*
*
*/
export declare function ThemeProvider({ mode: modeProp, theme: overrides, children, }: ThemeProviderProps): React.ReactElement;
//# sourceMappingURL=ThemeProvider.d.ts.map