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 {};
