@remotion/studio
Version:
APIs for interacting with the Remotion Studio
10 lines (9 loc) • 362 B
TypeScript
import React from 'react';
export declare const getMaxModalWidth: (width: number) => string;
export declare const getMaxModalHeight: (height: number) => string;
export declare const ModalContainer: React.FC<{
readonly onEscape: () => void;
readonly onOutsideClick: () => void;
readonly children: React.ReactNode;
readonly noZIndex?: boolean;
}>;