import React from "react"; import { IUl } from "../../types/interface"; import "./List.scss"; import { TextAlign } from "../../types/enum"; interface IJDlistProps extends IUl { className?: string; border?: boolean; stripe?: boolean; withIndex?: boolean; contents: any[]; align?: TextAlign; noWrap?: boolean; marginBottom?: "short" | "normal" | "long"; linePoint?: string; } declare const JDlist: React.FC; export default JDlist;