import type { ReorderSequencePosition, SequenceNodePathRemapping } from '@remotion/studio-shared'; import type { SequenceNodePath } from 'remotion'; export declare const reorderSequence: ({ input, sourceNodePath, targetNodePath, position, }: { input: string; sourceNodePath: SequenceNodePath; targetNodePath: SequenceNodePath; position: ReorderSequencePosition; formatFile?: ((input: { contents: string; prettierConfigOverride: Record | null; }) => Promise<{ output: string; formatted: boolean; }>) | undefined; prettierConfigOverride?: Record | null | undefined; }) => Promise<{ output: string; formatted: boolean; sequenceLabel: string; logLine: number; nodePathRemappings: SequenceNodePathRemapping[]; }>;