import type { PositionChangeEvent, PositionChangeEventPayload } from '../TrueSheet.types'; type PositionChangeHandler = (payload: PositionChangeEventPayload, context: Record) => void; /** * Web implementation of useReanimatedPositionChangeHandler. * * Returns a simple callback wrapper. The worklet directive is ignored on web * since there's no native UI thread. * * @param handler - The position change handler function * @param _dependencies - Unused on web, kept for API compatibility * @returns An event handler compatible with onPositionChange prop */ export declare const useReanimatedPositionChangeHandler: (handler: PositionChangeHandler, _dependencies?: unknown[]) => (event: PositionChangeEvent) => void; export {}; //# sourceMappingURL=useReanimatedPositionChangeHandler.web.d.ts.map