UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

13 lines (12 loc) 454 B
import type { AvailableOptions } from '@remotion/renderer/client'; import React from 'react'; export declare const NumberSetting: React.FC<{ readonly name: string; readonly value: number; readonly onValueChanged: React.Dispatch<React.SetStateAction<number>>; readonly max?: number; readonly min: number; readonly step: number; readonly formatter?: (value: string | number) => string; readonly hint?: AvailableOptions; }>;