@remotion/studio
Version:
APIs for interacting with the Remotion Studio
9 lines (8 loc) • 543 B
TypeScript
import type { PropsEditType } from './RenderModal/DataEditor';
import type { UpdaterFunction } from './RenderModal/SchemaEditor/ZodSwitch';
export declare const DefaultPropsEditor: ({ unresolvedComposition, defaultProps, setDefaultProps, propsEditType, }: {
readonly unresolvedComposition: import("remotion").AnyComposition;
readonly defaultProps: Record<string, unknown>;
readonly setDefaultProps: UpdaterFunction<Record<string, unknown>>;
readonly propsEditType: PropsEditType;
}) => import("react/jsx-runtime").JSX.Element;