/// <reference types="react" />
import { Props as UseMakeLineProps } from "../utils/useMakeLine";
type Props = {
    animate?: boolean;
    label: string;
} & UseMakeLineProps;
export declare const Line: (props: Props) => JSX.Element;
export {};
