import { type ShortcutKey } from "../menuShortcuts"; export type BatchSectionMenuContentLabels = Readonly<{ rename: string; moveUp: string; moveDown: string; downloadAsZip: string; delete: string; }>; type BatchSectionMenuContentProps = Readonly<{ labels: BatchSectionMenuContentLabels; onRename: () => void; onMoveUp: () => void; onMoveDown: () => void; onDownloadAsZip?: () => void; onDelete?: () => void; isMoveUpDisabled: boolean; isMoveDownDisabled: boolean; isDownloadAsZipDisabled?: boolean; formatShortcut?: (key: ShortcutKey) => string; }>; export declare const BatchSectionMenuContent: ({ labels, onRename, onMoveUp, onMoveDown, onDownloadAsZip, onDelete, isMoveUpDisabled, isMoveDownDisabled, isDownloadAsZipDisabled, formatShortcut, }: BatchSectionMenuContentProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=BatchSectionMenuContent.d.ts.map