import React from 'react'; interface LineProps extends React.HTMLAttributes { className?: string; } declare const Line: { ({ className, ...other }: LineProps): React.JSX.Element; displayName: string; }; export default Line;