import React from 'react'; export interface LineProps extends React.HTMLAttributes { size?: 'xs' | 'sm' | 'md' | 'lg'; percent: number; strokeColor?: string; direction?: 'top' | 'right' | 'bottom' | 'left'; } declare const Line: (props: LineProps) => import("react/jsx-runtime").JSX.Element; export default Line;