UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

12 lines (11 loc) 372 B
import React from 'react'; type HighestZIndexContainer = { highestIndex: number; registerZIndex: (index: number) => void; unregisterZIndex: (index: number) => void; }; export declare const HighestZIndexContext: React.Context<HighestZIndexContainer>; export declare const HighestZIndexProvider: React.FC<{ readonly children: React.ReactNode; }>; export {};