import React from 'react'; export interface ActiveLineProps extends React.HTMLAttributes { left: number; width: number; className?: string; } declare const Line: React.FC; export default Line;