import React from 'react'; type FreezeProps = { frame: number; children: React.ReactNode; active?: boolean | ((f: number) => boolean); }; /** * @description This method freezes all of its children to the frame that you specify as a prop * @see [Documentation](https://www.remotion.dev/docs/freeze) */ export declare const Freeze: React.FC; export {};