import React from 'react';
import { MarginType } from '../../types/styleType';
interface ILineProps extends React.HTMLAttributes<HTMLSpanElement>, MarginType {
    color?: string;
    size?: number | string;
    borderSize?: number;
    isHorizontal?: boolean;
}
declare const Line: React.ForwardRefExoticComponent<ILineProps & React.RefAttributes<HTMLSpanElement>>;
export default Line;
