import type { File, JSXOpeningElement } from '@babel/types'; import type { SequenceNodePathRemapping } from '@remotion/studio-shared'; import type { SequenceNodePath } from 'remotion'; export type CapturedJsxNodePath = { node: JSXOpeningElement; nodePath: SequenceNodePath; signature: string; }; export declare const captureJsxNodePaths: (ast: File) => CapturedJsxNodePath[]; export declare const getNodePathRemappings: ({ ast, captured, output, }: { ast: File; captured: CapturedJsxNodePath[]; output: string; }) => { nodePathRemappings: SequenceNodePathRemapping[]; finalNodePathByNode: Map; };