import type { TypeOfOption } from '../client'; export type RemotionOption = { name: string; cliFlag: string; ssrName: SsrName | null; description: (mode: 'ssr' | 'cli') => React.ReactNode; docLink: string | null; type: Type; getValue: (values: { commandLine: Record; }, more?: any) => { value: Type; source: string; }; setConfig: (value: Type) => void; id: string; }; export type AnyRemotionOption = RemotionOption; export type ToOptions>> = { [K in keyof T]: TypeOfOption; };