import React from "react"; import { TaskId } from "../../../../types"; type BarProgressHandleProps = { className?: string; taskId: TaskId; progressPoint: string; startMoveProgress: (clientX: number) => void; }; export declare const BarProgressHandle: React.FC; export {};