import { ComputedRef } from 'vue'; /** * Returns a reactive boolean indicating if the current theme is light mode. * * This hook reacts automatically to theme changes, allowing components * to adjust their UI when light mode is active. * * @returns {ComputedRef} True if the current theme is 'light'. */ export declare function useIsLightModeActive(): ComputedRef;