import { type ReactNode } from 'react'; import { type Theme } from '../theme.js'; /** Provides the theme to all descendants. Wrap the TUI root once. */ export declare function ThemeProvider({ children }: { children: ReactNode; }): import("react").JSX.Element; /** Access the active theme. Single source of color tokens in components. */ export declare function useTheme(): Theme;