import type { Worklet } from './bindings/index.js'; /** * Hydrates a Worklet context with data from a first-screen Worklet context. * This process is typically used to run all delayed `runOnBackground` functions * and initialize `WorkletRef` values modified before hydration. * * @param ctx The target Worklet context to be hydrated. * @param firstScreenCtx The Worklet context from the first screen rendering, * containing the data to hydrate with. */ export declare function hydrateCtx(ctx: Worklet, firstScreenCtx: Worklet): void;