import type { Ref } from '@stacksjs/stx'; /** * Reactive Vibration API. */ export declare function useVibrate(options?: UseVibrateOptions): UseVibrateReturn; export declare interface UseVibrateOptions { pattern?: number | number[] } export declare interface UseVibrateReturn { isSupported: Ref vibrate: (pattern?: number | number[]) => boolean stop: () => void }