import { ITidyUITheme } from '../theme/types'; /** * Interface for the theme attributes */ declare type useThemeReturn = { /** * Function to change the theme */ changeTheme: (newTheme: ITidyUITheme) => void; /** * Theme attributes */ theme: ITidyUITheme; }; /** * React hook to get the theme attributes * * @returns {useThemeReturn} theme attributes */ declare const useTheme: () => useThemeReturn; export default useTheme;