import type { JSXElement } from '@babel/types'; export declare const getCompositionId: (jsxElement: JSXElement) => string | null; export declare const duplicateCompositionInSource: ({ input, codemod, }: { input: string; codemod: { type: "duplicate-composition"; idToDuplicate: string; newId: string; newHeight: number | null; newWidth: number | null; newFps: number | null; newDurationInFrames: number | null; tag: "Composition" | "Still"; }; }) => { newContents: string; changesMade: { description: string; }[]; };