@remotion/studio
Version:
APIs for interacting with the Remotion Studio
13 lines (12 loc) • 562 B
TypeScript
import React from 'react';
import type { SerializedJSONWithCustomFields } from 'remotion';
import type { AnyZodSchema } from './SchemaEditor/zod-schema-type';
export declare const RenderModalJSONPropsEditor: React.FC<{
readonly value: unknown;
readonly setValue: React.Dispatch<React.SetStateAction<Record<string, unknown>>>;
readonly onSave: () => void;
readonly serializedJSON: SerializedJSONWithCustomFields | null;
readonly defaultProps: Record<string, unknown>;
readonly schema: AnyZodSchema;
readonly compositionId: string;
}>;