5 lines
503 B
TypeScript
5 lines
503 B
TypeScript
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;
|