import { CompleteThemeSettings } from '../../../types'; /** * Returns the resolved theme from the nearest {@link ThemeProvider}. * Falls back to the default theme when no provider is present. * * @example * ```tsx * const { palette, typography, widget } = useTheme(); * ``` * * @returns Resolved {@link CompleteThemeSettings} * @group Contexts */ export declare const useTheme: () => CompleteThemeSettings;