import type { Ref } from '@stacksjs/stx'; /** * Like useRefHistory but throttles automatic commits. */ export declare function useThrottledRefHistory(source: Ref, options?: { capacity?: number, clone?: boolean, throttle?: number }): void;