import React from 'react'; export interface HighlightConfigSectionProps { /** Current target duration in seconds */ targetDurationSeconds: number; /** Callback when target duration changes */ onTargetDurationChange: (seconds: number) => void; /** Whether the section is disabled */ disabled?: boolean; /** Additional class name */ className?: string; } /** * HighlightConfigSection - Unified component for highlight video configuration * * This component provides a consistent UI for both CustomerInterview and ProductRelease entities, * including duration selection in a styled horizontal layout. Highlight captions * are generated automatically as a selectable text track (same pattern as the * main video) — there is no subtitle-burning option anymore. */ export declare function HighlightConfigSection({ targetDurationSeconds, onTargetDurationChange, disabled, className, }: HighlightConfigSectionProps): React.JSX.Element; export default HighlightConfigSection; //# sourceMappingURL=highlight-config-section.d.ts.map