/// <reference types="react" />
interface TasksModalProps {
    modalType: "Rerun" | "Cancel";
    counter: number;
    onCancelAll: () => void;
    onRerunAll: () => void;
    onCloseModal: () => void;
}
export declare function TasksModal({ modalType, counter, onCancelAll, onRerunAll, onCloseModal, }: TasksModalProps): JSX.Element;
export {};
