import type { BaseThemeOrOverride } from './EmotionTypes'; /** * --- * private: true * --- * A hook that will return the currently applied theme object from the nearest Context. * If there is no theme provided to the Context, it will return the default `canvas` theme. * @returns The theme object */ declare const useTheme: () => BaseThemeOrOverride; export default useTheme; export { useTheme }; //# sourceMappingURL=useTheme.d.ts.map