import type { Ref } from '@stacksjs/stx'; /** * Reactive current time. * Returns a ref that updates every `interval` milliseconds. * * @param options - Configuration with interval (default 1000ms) */ export declare function useNow(options?: { interval?: number }): Ref;