import type { Theme } from "./Theme.types.mjs";
/**
* Hook that provides access to the current theme.
* Use this when you need to conditionally render content based on theme.
*
* @returns The current theme ('light' or 'dark')
*
* @example
* const theme = useTheme();
* const inverseTheme = theme === Theme.Light ? Theme.Dark : Theme.Light;
* return (
*
*
* Toast message
*
*
* );
*/
export declare const useTheme: () => Theme;
/**
* Hook that provides access to the tailwind utility function.
* Use this when you only need styling capabilities.
*
* @returns Tailwind utility function for styling
*
* @example
* const tw = useTailwind();
* return (
*
* Styled content
*
* );
*/
export declare const useTailwind: () => import("twrnc").TailwindFn;
//# sourceMappingURL=hooks.d.mts.map