UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

8 lines (7 loc) 328 B
import React from 'react'; type CreatedNotification = { replaceContent: (newContent: React.ReactNode, durationInMs: number | null) => void; }; export declare const showNotification: (content: React.ReactNode, durationInMs: number | null) => CreatedNotification; export declare const NotificationCenter: React.FC; export {};