import { Property } from "csstype"; import { MarginProps } from "../../styled-system/props/margin"; import { ResponsiveValue } from "../../styled-system/types"; import { ElementType, HTMLHopeProps } from "../types"; interface ListOptions { /** * Short hand for the `list-style-type` css property. */ styleType?: Property.ListStyleType; /** * Short hand for the `list-style-position` css property. */ stylePosition?: Property.ListStylePosition; /** * The space between each list item. */ spacing?: ResponsiveValue; } export declare type ListProps = HTMLHopeProps; /** * List is used to display list items, it renders a `
    ` by default. */ export declare function List(props: ListProps): import("solid-js").JSX.Element; export declare namespace List { var toString: () => string; } export declare function OrderedList(props: ListProps): import("solid-js").JSX.Element; export declare namespace OrderedList { var toString: () => string; } export declare function UnorderedList(props: ListProps): import("solid-js").JSX.Element; export declare namespace UnorderedList { var toString: () => string; } export {}; //# sourceMappingURL=list.d.ts.map