import React from "react";
import type { TaskItemProps } from "../task-item";
import { BarMoveAction } from "../../../types/public-types";
export declare const Bar: React.FC<TaskItemProps & {
    onTaskEventStart: (action: BarMoveAction, clientX: number) => void;
}>;
