type FoundReason = 'argument passed - found in cwd' | 'argument passed - found in root' | 'argument passed' | 'config file' | 'common paths' | 'none found';
export declare const findEntryPoint: ({ args, logLevel, remotionRoot, allowDirectory, }: {
    args: (string | number)[];
    remotionRoot: string;
    logLevel: "error" | "info" | "trace" | "verbose" | "warn";
    allowDirectory: boolean;
}) => {
    file: string | null;
    remainingArgs: (string | number)[];
    reason: FoundReason;
};
export {};
