import type { WorkSlide } from '../work-types'; import type { PresentationEditorCommands } from './presentation-command-types'; export type PresentationCommentsPanelCommands = Pick; export declare function PresentationCommentsPanel({ slides, activeCommentId, commands, restoreFocusTarget, }: { slides: WorkSlide[]; activeCommentId: string | null; commands: PresentationCommentsPanelCommands; restoreFocusTarget?: () => HTMLElement | null; }): import("react").JSX.Element; export declare function presentationCommentCount(slides: readonly WorkSlide[]): number;