interface StudioManualEditsRenderScriptOptions { activeCompositionPath?: string | null; } declare const STUDIO_MANUAL_EDITS_PATH = ".hyperframes/studio-manual-edits.json"; declare function createStudioManualEditsRenderBodyScript(manifestContent: string, options?: StudioManualEditsRenderScriptOptions): string | null; /** * Returns a self-contained IIFE string that re-applies studio position edits * (translate, rotate) after every GSAP seek by querying data attributes baked * into the HTML. Works without a JSON manifest — positions are already inlined * as CSS custom properties on the elements. */ declare function createStudioPositionSeekReapplyScript(): string; export { STUDIO_MANUAL_EDITS_PATH, type StudioManualEditsRenderScriptOptions, createStudioManualEditsRenderBodyScript, createStudioPositionSeekReapplyScript };