import * as React from "react"; export interface SharedListProps { children: Array> | React.ReactElement; /** * Set to an ordered list `ol` or the defaulted unordered list `ul` */ tag?: "ul" | "ol"; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; } 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: ({ children, className, markerStyle, tag, "data-cy": dataCy }: ListProps) => React.JSX.Element; export default List;