UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

5 lines (4 loc) 503 B
import type { CompositionProps, StillProps } from 'remotion'; import type { AnyZodObject } from 'zod'; export declare const createComposition: <Schema extends AnyZodObject, Props extends Record<string, unknown>>({ ...other }: CompositionProps<Schema, Props>) => () => import("react/jsx-runtime").JSX.Element; export declare const createStill: <Schema extends AnyZodObject, Props extends Record<string, unknown>>({ ...other }: StillProps<Schema, Props>) => () => import("react/jsx-runtime").JSX.Element;