import React from "react"; import { BulkTab } from "./types"; interface CsvRow { _id: string; title: string; focusKeyword: string; found: boolean; } interface LogEntry { msg: string; ok: boolean; } interface Props { selectedCount: number; bulkTab: BulkTab; onTabChange: (tab: BulkTab) => void; bulkProcessing: boolean; onApply: () => void; csvPreview: CsvRow[]; csvError: string | null; csvApplying: boolean; onCSVFile: (fileOrEvent: File | React.ChangeEvent) => void; onApplyCSV: () => void; log: LogEntry[]; selectedMissingTitle: number; } export default function BulkActions({ selectedCount, bulkTab, onTabChange, bulkProcessing, onApply, csvPreview, csvError, csvApplying, onCSVFile, onApplyCSV, log, selectedMissingTitle, }: Props): React.JSX.Element; export {};