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