@remotion/studio
Version:
APIs for interacting with the Remotion Studio
9 lines (8 loc) • 487 B
TypeScript
import type { RenderType } from '../components/RenderModal/RenderModalAdvanced';
type Section = 'general' | 'picture' | 'advanced' | 'data' | 'gif' | 'audio';
export declare const useRenderModalSections: (renderMode: RenderType, codec: "aac" | "av1" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav") => {
tab: Section;
setTab: import("react").Dispatch<import("react").SetStateAction<Section>>;
shownTabs: Section[];
};
export {};