Files
2026-02-21 10:33:18 +01:00

8 lines
232 B
TypeScript

import type { Size } from '@remotion/player';
import React from 'react';
import type { CanvasContent } from 'remotion';
export declare const Canvas: React.FC<{
readonly canvasContent: CanvasContent;
readonly size: Size;
}>;