8 lines
232 B
TypeScript
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;
|
|
}>;
|