import type { GestureKind } from './types.js'; /** * Prepare a gesture payload to be sent to the main thread. * * This function returns a copy of the input object and injects `_execId` into * its worklet callbacks. The background-side gesture object MUST NOT be mutated, * otherwise `_execId` churn would pollute the cached values and cause redundant patches. */ export declare function prepareGestureForCommit(gesture: GestureKind): GestureKind;