Files
story-studio/remotion/node_modules/@remotion/studio/dist/api/create-composition.d.ts
2026-02-21 10:33:18 +01:00

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;