type RemotionDetectionResult = { type: 'match'; } | { type: 'mismatch'; } | { type: 'not-remotion'; }; export declare const detectRemotionServer: (port: number, cwd: string) => Promise; export {};