import type { MaybeRef } from './_shared'; import type { Ref } from '@stacksjs/stx'; /** * Reactive parallax effect based on mouse position or device orientation. */ export declare function useParallax(target: MaybeRef, options?: UseParallaxOptions): UseParallaxReturn; export declare interface UseParallaxReturn { tilt: Ref roll: Ref source: Ref<'mouse' | 'deviceOrientation'> } export declare interface UseParallaxOptions { deviceOrientationTiltAdjust?: (value: number) => number deviceOrientationRollAdjust?: (value: number) => number }