@remotion/studio
Version:
APIs for interacting with the Remotion Studio
9 lines (8 loc) • 311 B
TypeScript
import type { SVGProps } from 'react';
import React from 'react';
export declare const WarningTriangle: React.FC<SVGProps<SVGSVGElement>>;
export declare const ValidationMessage: React.FC<{
readonly message: string;
readonly align: 'flex-start' | 'flex-end';
readonly type: 'warning' | 'error';
}>;