import { NormalizedPadding } from '../types'; /** * Builds the idempotent correction pass. It **measures the wrapper** (stable * final geometry, immune to the content's entrance `transform` animation) and * **writes `translate` to the content** (composing with — not overriding — that * animation). Reading the wrapper is unaffected by our content write, so the * result is absolute and re-running never accumulates. */ export declare const createCorrector: (content: HTMLElement, wrapper: HTMLElement, padRef: { current: NormalizedPadding; }) => () => void;