import { ThemeContextValue } from '../context'; /** * Hook to access the current theme context. * * Must be used within a ``. If used outside, it will throw an error. * * @throws Error if the context is unavailable (i.e., outside a ThemeProvider). * @returns The current ThemeContextValue. * * @category Hooks */ export declare function useTheme(): ThemeContextValue;