UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

12 lines (11 loc) 295 B
import React from 'react'; export type SegmentedControlItem = { label: React.ReactNode; onClick: () => void; key: string; selected: boolean; }; export declare const SegmentedControl: React.FC<{ readonly items: SegmentedControlItem[]; readonly needsWrapping: boolean; }>;