import * as React from "react"; export interface SharedListProps { children: Array> | React.ReactElement; tag: "ul" | "ol"; } interface ListProps extends SharedListProps { /** * The style of the text bullets. See https://www.w3.org/TR/CSS21/generate.html#list-style for more info */ markerStyle?: "disc" | "circle" | "decimal" | "decimal-leading-zero" | "lower-roman" | "upper-roman" | "lower-latin" | "upper-latin" | "none"; } declare const List: { (props: ListProps): JSX.Element; defaultProps: { markerStyle: string; tag: string; }; }; export default List;