UNPKG

@hirebus/academy

Version:

React component library for academy and learning platforms

14 lines (13 loc) 494 B
interface EnhancementOptions { smartChapters: boolean; transcript: boolean; relatedTopics: boolean; } interface AiEnhancementSelectionMenuProps { options: EnhancementOptions; onOptionsChange: (options: EnhancementOptions) => void; onEnhance: () => void; className?: string; } export declare function AiEnhancementSelectionMenu({ options, onOptionsChange, onEnhance, className, }: AiEnhancementSelectionMenuProps): import("react/jsx-runtime").JSX.Element; export {};