interface StudioMotionRenderScriptOptions { activeCompositionPath?: string | null; } declare const STUDIO_MOTION_PATH = ".hyperframes/studio-motion.json"; /** * Builds the render-time Studio motion runtime script, or null when no owned motion exists. */ declare function createStudioMotionRenderBodyScript(manifestContent: string, options?: StudioMotionRenderScriptOptions): string | null; export { STUDIO_MOTION_PATH, type StudioMotionRenderScriptOptions, createStudioMotionRenderBodyScript };