import type React from 'react'; /** * @description This function registers the root component of the Remotion project * @see [Documentation](https://www.remotion.dev/docs/register-root) */ export declare const registerRoot: (comp: React.FC) => void; export declare const getRoot: () => React.FC<{}> | null; export declare const waitForRoot: (fn: (comp: React.FC) => void) => (() => void);