import type { Value } from './types'; type OnChange = (value: Value) => void; /** * Wrap the onChange handler to notify outer code only on meaningful updates. */ export declare function useOnChange(onChange: OnChange): OnChange; export {};