UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

13 lines (12 loc) 526 B
import React from 'react'; import type { SerializedJSONWithCustomFields } from 'remotion'; import type { z } from 'zod'; export declare const RenderModalJSONPropsEditor: React.FC<{ readonly value: unknown; readonly setValue: React.Dispatch<React.SetStateAction<Record<string, unknown>>>; readonly onSave: () => void; readonly showSaveButton: boolean; readonly serializedJSON: SerializedJSONWithCustomFields | null; readonly defaultProps: Record<string, unknown>; readonly schema: z.ZodTypeAny; }>;