import type { Ref } from '@stacksjs/stx'; /** * Track the timestamp of when a ref last changed. * * @param source - The reactive source to watch * @param options - Optional initial timestamp value */ export declare function useLastChanged(source: Ref, options?: UseLastChangedOptions): Ref; export declare interface UseLastChangedOptions { initialValue?: number | null }