import { TextDensity, TimelineMode, TimelineModel, TimelineProps } from '../../models/TimelineModel'; import { RefObject } from 'react'; export type TimelineToolbarProps = Pick & { id: string; onActivateTimelineItem: (id: string) => void; onUpdateTextContentDensity: (value: TextDensity) => void; onUpdateTimelineMode: (mode: TimelineMode) => void; toggleDarkMode: () => void; totalItems: number; searchQuery: string; onSearchChange: (query: string) => void; onTriggerSearch: () => void; onClearSearch: () => void; onNextMatch: () => void; onPreviousMatch: () => void; totalMatches: number; currentMatchIndex: number; onSearchKeyDown?: (event: React.KeyboardEvent) => void; searchInputRef?: RefObject; timelineRef?: RefObject; onEnterFullscreen?: () => void; onExitFullscreen?: () => void; onFullscreenError?: (error: string) => void; } & Pick; //# sourceMappingURL=timeline-toolbar.model.d.ts.map